Advertisement
coinwalk

there should work now

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