Advertisement
coinwalk

awesome 95

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