Advertisement
coinwalk

crazybot

Mar 18th, 2021
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. fraction = 50
  2. basebet = balance/fraction
  3. chance = 49.95
  4. nextbet = basebet
  5. bethigh = false
  6. oldbal = balance
  7. target = 100
  8. wage = 0
  9. resetstats()
  10.  
  11.  
  12. function dobet()
  13. if balance<oldbal then
  14. nextbet = previousbet+previousbet
  15. end
  16. if (balance>=oldbal) then
  17. nextbet = basebet
  18. oldbal = balance
  19. end
  20. if (balance>=target) then
  21. stop()
  22. end
  23. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement