Advertisement
coinwalk

this is how snowy does it

Sep 1st, 2019
197
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. chance = 49.95
  2. nextbet = 0.00000001
  3. basebet = 0.00000001
  4. bethigh=true
  5. maxline = 0.000001
  6. target = 100000
  7. multi = 2
  8. function dobet()
  9.  
  10. if win then
  11. bethigh=true
  12. else
  13. nextbet = previousbet * multi
  14. end
  15. if previousbet > maxline then
  16. if win then
  17. nextbet = basebet
  18. resetseed();
  19. resetbuiltin()
  20. else
  21. nextbet = previousbet * multi
  22. end
  23. end
  24. end
  25. end
  26. if balance > target then
  27. stop()
  28. end
  29. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement