Advertisement
Shiemmi

The Jossy Martingale

Feb 21st, 2019
331
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.51 KB | None | 0 0
  1. This is kind of a martingale mixup, it starts with a low 27.5% chance bet followed by a 50/50, if both of those fail it will bid at 72.5% chance with minimal profit, if betcalc is set at a reasonable amount it will almost inevitably continue profiting.
  2.  
  3.  
  4.  
  5.  
  6. -- Please have at least 0.00100000 collateral
  7. -- and set betcalc using one of the following
  8. -- numbers, 8 loss streaks is usually the highest
  9. -- result with 50k bets and over 200k bets I have
  10. -- not yet seen a 9 loss streak.
  11.  
  12. -- 7 max losses (ludicrous) - 27.364138
  13. -- 8 max losses (stupid) - 7.3446286
  14. -- 9 max losses (risky) - 1.9714477
  15. -- 10 max losses (safe) - 0.5291766
  16. -- 11 max losses (safest) - 0.1420417
  17.  
  18. betcalc = 0
  19. -------------------------------------------
  20.  
  21. bethigh = true
  22. stopnow = false
  23. first = true
  24. done = true
  25. chance = 27.5
  26.  
  27. if (betcalc < 0.01) then print("Please set betcalc then restart the script") stop() end
  28.  
  29. base = balance * (betcalc / 100000)
  30. curbet = base * 3.7255
  31. nextbet = base
  32.  
  33. function dobet()
  34.  
  35. base = balance * (betcalc / 100000)
  36.  
  37. if (first) then
  38. if(stopnow) then stop() end
  39. if !win then
  40. chance = 50
  41. nextbet = curbet
  42. first = false
  43. done = true
  44. end
  45. end
  46.  
  47. if(!first and !done) then
  48. if(stopnow) then stop() end
  49. if win then
  50. chance = 27.5
  51. curbet = base * 3.7255
  52. nextbet = base
  53. first = true
  54. done = true
  55. else
  56. curbet = curbet * 3.7255
  57. nextbet = curbet
  58. chance = 72.5
  59. end
  60. end
  61. done = false
  62. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement