Advertisement
coinwalk

jonconan

Mar 12th, 2020
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1.  
  2. chance = 49.95
  3.  
  4. basebet = 0.01
  5. base1 = 0.3
  6. lol = 0
  7. maxbalance = balance
  8.  
  9. function dobet()
  10.  
  11.  
  12.  
  13.  
  14.  
  15. if win then
  16.  
  17. nextbet = basebet
  18. chance = 49
  19. lol = 0
  20.  
  21. else
  22. lol+=1
  23. nextbet = previousbet*2
  24. chance = 49
  25.  
  26. end
  27.  
  28. if lol>=1 then
  29. if lastBet.Roll<=50 then
  30. bethigh = false
  31. end
  32. end
  33. if lastBet.Roll>=50 then
  34.  
  35. bethigh = true
  36. end
  37.  
  38. if lol >=4 then
  39.  
  40. if lastBet.Roll>=50 then
  41.  
  42. bethigh = false
  43. end
  44. end
  45. if lastBet.Roll<=50 then
  46.  
  47.  
  48.  
  49. bethigh = true
  50.  
  51. end
  52.  
  53.  
  54.  
  55. if maxbalance<balance then
  56.  
  57. nextbet = basebet
  58. chance = math.random(24,33)
  59. bethigh = math.random(24,99.9999)%2==0
  60. maxbalance = balance
  61.  
  62. end
  63. if maxbalance>=10000 then
  64. stop()
  65.  
  66. end
  67.  
  68.  
  69. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement