Advertisement
coinwalk

super bot

Oct 4th, 2021
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. divide = 512
  2. b = balance/divide
  3. bob = 10
  4. chance = 49.5
  5. bethigh = false
  6. nextbet = b
  7. target = 50000
  8. old = balance
  9. v = bob
  10. x = bob
  11. zim = (balance-(b*10))
  12. resetstats()
  13.  
  14. function dobet()
  15. resetseed()
  16. if win then
  17. v = v+1
  18. else
  19. v = v-1
  20. end
  21. if (v<=(x-4)) or (v>=(x+7)) then
  22. nextbet = previousbet*2
  23. x = v
  24. end
  25. if (balance>=(old+(b*10))) then
  26. nextbet = b
  27. v = bob
  28. x = bob
  29. old = balance
  30. end
  31. if (((balance-nextbet)<=zim) and previousbet>=b*2) or balance<zim then
  32. nextbet = previousbet
  33. end
  34. if (balance>target) then
  35. stop()
  36. end
  37. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement