Advertisement
coinwalk

awesome snowy just awesome

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