Advertisement
alfarishi

Untitled

Apr 29th, 2020
396
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. chance    = 17.0
  2. multi     = 2
  3. b         = 0
  4. c         = 0
  5. d         = 0
  6. e         = 0
  7. f         = 0
  8. g         = 0
  9. h         = 0
  10. base      = balance*0.00001
  11. target    = balance*1.25
  12. nextbet   = base
  13. losecount = 0
  14. rollcount = 0
  15.  
  16.  
  17. function dobet()
  18.  
  19. if (balance > target) then stop() end
  20. if rollcount == 8 then
  21.    
  22.    rollcount = 0
  23.    
  24.    bethigh   = false
  25.  
  26.  else
  27.    rollcount+=1
  28. end
  29.    if rollcount == 4 then
  30.  
  31.        rollcount = 4
  32.  
  33.        bethigh = true
  34. end
  35.  
  36.    b+=0.1275
  37.   if win then
  38.     b=0
  39.  
  40.     c=0
  41.  
  42.     losecount=0
  43.  
  44.     d=0
  45.     e=0
  46.     f=0
  47.     g=0
  48.     nextbet = base
  49.     chance = math.random(15.51,17.50)
  50.     multi=2
  51.     h+=1
  52.   else
  53.     e+=0.5
  54.     losecount+=1
  55.     chance=(17.0+e)
  56.     nextbet = previousbet*(multi-b)
  57.    
  58. end
  59. if (losecount > 4) then
  60.     f+=2.46
  61.     multi = 1.4
  62.   c+=0.0525
  63.   nextbet = previousbet*(multi+c)  
  64.   chance  = (15-f)
  65. end
  66. if (losecount > 14) then
  67.     g+=1.75
  68.     multi = 1.82
  69.   d+=0.06
  70.  
  71.   nextbet = previousbet*(multi+d)
  72.   chance  = (38.5+g)
  73. end
  74. end
  75. end
  76. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement