Advertisement
coinwalk

try this wins at 30k

Sep 8th, 2019
227
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. chance = 19.8
  2. nextbet = balance/15000
  3. basebet = balance/15000
  4. max = balance/100
  5. super = balance/40
  6. bethigh=true
  7. lol=balance/2
  8. function dobet()
  9. if win then
  10. nextbet = basebet
  11. else
  12. nextbet = previousbet * 1.4
  13. end
  14. if currenstreak == -6 then
  15. nextbet = balance/920
  16. end
  17. if currentstreak == -22 then
  18. nextbet = super
  19. end
  20. if previousbet > max then
  21. if win then
  22. nextbet = basebet
  23. else
  24. nextbet = previousbet * 1.4
  25. end
  26. end
  27. if balance > 100000 then
  28. stop()
  29. end
  30. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement