Advertisement
coinwalk

cool

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