alfarishi

un

Apr 29th, 2020
428
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 -- recomended balance*0.000001
  11. target    = balance*1.2
  12. nextbet   = base
  13. losecount = 0
  14. rollcount = 0
  15. function dobet()
  16.  
  17. if (balance > target) then stop() end
  18. if rollcount == 8 then
  19.    
  20.    rollcount = 0
  21.    
  22.    bethigh   = false
  23.  
  24.  else
  25.    rollcount+=1
  26. end
  27.    if rollcount == 4 then
  28.  
  29.        rollcount = 4
  30.  
  31.        bethigh = true
  32. end
  33.  
  34.    b+=0.1275
  35.   if win then
  36.     b=0
  37.  
  38.     c=0
  39.  
  40.     losecount=0
  41.  
  42.     d       = 0
  43.     e       = 0
  44.     f       = 0
  45.     g       = 0
  46.     nextbet = base
  47.     chance  = math.random(15,17)
  48.     multi   = 2.5
  49.     h+=1
  50.   else
  51.     e+=0.5
  52.     losecount+=1
  53.     chance=(17.0+e)
  54.     nextbet = previousbet*(multi-b)
  55.    
  56. end
  57. if (losecount > 1) then
  58.     f+=1.16
  59.     multi = 1.654
  60.   c+=0.055
  61.   nextbet = previousbet*(multi+c)  
  62.   chance  = (16-f)
  63. end
  64. if (losecount > 9) then
  65.     g+=3.75
  66.     multi = 2.2
  67.     d+=0.06
  68.  
  69.   nextbet = previousbet*(multi+d)
  70.   chance  = (48.5+g)
  71. end
  72. if (losecount > 10) then
  73.     multi = 2.42
  74.     d+=0.06
  75.  
  76.   nextbet = previousbet*(multi+d)
  77.   chance  = math.random(52,55)
  78. end
  79. end
  80. end
  81. end
Add Comment
Please, Sign In to add comment