Advertisement
coinwalk

manual bot

Sep 13th, 2020
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. basebet = balance/10
  2. chance = 49.95
  3. nextbet = basebet
  4. bethigh = true
  5. james = balance
  6. target = 2560
  7. bot = 0
  8. resetstats()
  9. function dobet()
  10.  
  11. if (win) then
  12. nextbet = previousbet
  13. bot = 0
  14. else
  15. bot+=1
  16. end
  17. if (balance<james) and (bot>=(math.random(6,10))) then
  18. nextbet = previousbet*2
  19. end
  20. if (balance>(james+(basebet*4))) then
  21. nextbet = basebet
  22. bot = 0
  23. james = balance
  24. end
  25. if balance>nextbet then
  26. nextbet = (balance/(math.random(4,6)))
  27. end
  28. if balance>target then
  29. stop()
  30. end
  31. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement