Advertisement
coinwalk

manual update

Sep 13th, 2020
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. basebet = balance/10
  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. bot+=1
  13. end
  14. if (balance<james) and (bot>=(math.random(6,10))) then
  15. nextbet = previousbet*2
  16. bot = 0
  17. end
  18. if (balance>(james+(basebet*4))) then
  19. nextbet = basebet
  20. bot = 0
  21. james = balance
  22. end
  23. if balance<nextbet then
  24. nextbet = (balance/(math.random(4,6)))
  25. end
  26. if balance>target then
  27. stop()
  28. end
  29. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement