Advertisement
coinwalk

snowybot

Oct 1st, 2020
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. basebet = balance/256000
  2. chance = 24
  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. nextbet = previousbet*1.5
  13. bot = 0
  14. else
  15. bot+=1
  16. end
  17. if (bot==2) or (bot==6) or (bot==12) or (bot==16) or (bot==24) or (bot==30) then
  18. nextbet = previousbet*2
  19. end
  20. if (balance>james) then
  21. nextbet = balance/256000
  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