Advertisement
coinwalk

low bal bot

Sep 4th, 2020
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. fraction = 6200
  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. end
  23. if (nextbet==nil) then
  24. nextbet = previousbet
  25. end
  26. if balance>james then
  27. nextbet = basebet
  28. botbuddy = 0
  29. james = balance
  30. end
  31. if balance>target then
  32. stop()
  33. end
  34. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement