Advertisement
coinwalk

new bot bot

Apr 10th, 2020
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. chance = 83
  2. lol = 0
  3. bethigh = false
  4. good = 20000
  5. basebet = balance/8000
  6. nextbet = basebet
  7. more = balance*1.001
  8. los = 0
  9. function dobet()
  10.  
  11. if (win) then
  12. lol += 1
  13. chance = 83
  14. los = 0
  15. else
  16. los +=1
  17. lol = 0
  18. end
  19. if (los == 1) then
  20. nextbet = previousbet*1.89
  21. los = 0
  22. end
  23. if (lol==5) then
  24. nextbet = previousbet*6.8
  25. lol = 0
  26. end
  27. if balance > more and win then
  28. nextbet = balance/8000
  29. more = balance*1.001
  30. end
  31. if balance > good then
  32. stop()
  33. end
  34. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement