Advertisement
Shiemmi

505

Feb 21st, 2019
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.05 KB | None | 0 0
  1. -1L, -1L, -1L, -4L, -4L, -4L, -16L, -16L, -16L, 64W/ resets to the base rate,-1L, 1W, -1L, -4L, 4W, 4W/ resets to the base
  2. Rates grow more slowly during a long series of consecutive losing bets.
  3. Winning bid does not guarantee reset on the base.
  4. Reset to basic, then when in scoring, either in the three is the first bet either of the three only 1 losing.
  5.  
  6. 1W/resets to the base rate,1W/resets to the base rate,-1L,-1L
  7.  
  8. -1L, 1W, -1L, -4L, 4W, 4W/ resets to the base rate,-1L,1W,-1L
  9.  
  10.  
  11.  
  12. chance= 49
  13. base=0.00000001
  14. bethigh = true
  15. investtarget = .001
  16.  
  17. nextbet = base
  18. investprofit = 0
  19. wincount = 0
  20. stopnow = false
  21. first = true
  22. second = false
  23. secondwin = false
  24. third = false
  25.  
  26. function dobet()
  27.  
  28. -- switch high/low every bet
  29. -- bethigh = !bethigh
  30.  
  31. investprofit += currentprofit
  32. done = false
  33.  
  34. if win then
  35.  
  36. -- switch high/low every win
  37. -- bethigh = !bethigh
  38.  
  39. if(first) then
  40. -- switch high/low on the first win
  41. -- bethigh = !bethigh
  42. nextbet = base
  43. if(stopnow) then stop() end
  44. end
  45. if(second) then
  46. -- switch high/low on the second win
  47. -- bethigh = !bethigh
  48. secondwin = true
  49. second = false
  50. third = true
  51. done = true
  52. end
  53. if(third and !done) then
  54. -- switch high/low on the third win
  55. -- bethigh = !bethigh
  56. if(secondwin) then
  57. -- switch high/low on the second and third win
  58. -- bethigh = !bethigh
  59. nextbet = base
  60. if(stopnow) then stop() end
  61. else
  62. -- switch high/low on one and two lose third win
  63. -- bethigh = !bethigh
  64. nextbet = previousbet * 3
  65. end
  66. third = false
  67. first = true
  68. end
  69. if (investprofit > investtarget) then
  70. invest(investtarget)
  71. investprofit = 0
  72. end
  73. else
  74. -- switch high/low on the every lose
  75. -- bethigh = !bethigh
  76. if(first and !done) then
  77. -- switch high/low on the first lose
  78. -- bethigh = !bethigh
  79. first = false
  80. second = true
  81. done = true
  82. end
  83. if(second and !done) then
  84. -- switch high/low on the second lose
  85. -- bethigh = !bethigh
  86. secondwin = false
  87. second = false
  88. third = true
  89. done = true
  90. end
  91. if(third and !done) then
  92. -- switch high/low on the third lose
  93. -- bethigh = !bethigh
  94. third = false
  95. first = true
  96. print("lose side")
  97. if (secondwin) then
  98. -- switch high/low on the one lose two in thrird lose
  99. -- bethigh = !bethigh
  100. nextbet = previousbet * 3
  101. else
  102. -- switch high/low only if all three lose
  103. -- bethigh = !bethigh
  104. nextbet = previousbet * 4
  105. end
  106. done = true
  107. end
  108. end
  109. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement