Advertisement
coinwalk

better snowies bot

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