Advertisement
coinwalk

killjake

Sep 20th, 2020
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. basebet = balance/20480
  2. chance = 6
  3. nextbet = basebet
  4. bethigh = true
  5. james = balance
  6. target = 500000
  7. bot = 0
  8. resetstats()
  9. function dobet()
  10.  
  11. if (win) then
  12. bot = 0
  13. else
  14. bot+=1
  15. end
  16. if (bot==12) or (bot==21) or (bot==28) then
  17. nextbet = previousbet*2
  18. end
  19. if (bot==28) then
  20. bot = 0
  21. end
  22. if (balance>james) then
  23. nextbet = basebet
  24. bot = 0
  25. james = balance
  26. end
  27. if balance>target then
  28. stop()
  29. end
  30. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement