Advertisement
coinwalk

try this at 0.001

Nov 1st, 2019
574
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. chance = 24.975
  2. nextbet = 0.00000001
  3. prebet = 0.00000001
  4. bethigh = true
  5. mick = 0
  6. lose = 0
  7. function dobet()
  8. if win then
  9. mick += 1
  10. nextbet = 0.00000001
  11. lose = 0
  12. else
  13. lose += 1
  14. end
  15. if (math.fmod(lose,2)==0) then
  16. nextbet = previousbet*2
  17. if win then nextbet = prebet end
  18. end
  19. if (mick==2) then
  20. if (bethigh==true) then bethigh=false else bethigh=true end
  21. mick = 0
  22. end
  23. if balance > 1 then
  24. stop()
  25. end
  26. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement