Advertisement
coinwalk

the best bot ever made

Dec 19th, 2020
228
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. fraction = 640000
  2. basebet = balance/fraction
  3. chance = 24.975
  4. nextbet = basebet
  5. bethigh = false
  6. los = 0
  7. ccc = 0
  8. loss = 0
  9. target = 45000
  10. ol = balance
  11. olly = balance
  12. ko = 0
  13. cccc = 0
  14. zim = 0
  15. silly = 0
  16. resetstats()
  17.  
  18. function dobet()
  19. basebet = balance/fraction
  20. if win then
  21. ccc+=1
  22. cccc+=1
  23. ko+=1
  24. los = 0
  25. else
  26. los+=1
  27. cccc = 0
  28. loss+=1
  29. end
  30. if (los<4) and (ccc>1) then
  31. nextbet = previousbet*2
  32. ccc = 0
  33. zim = 0
  34. end
  35. if los>=4 then
  36. ccc = 0
  37. end
  38. if (balance>=olly) and win then
  39. nextbet = basebet
  40. los = 0
  41. olly = balance
  42. end
  43. if (balance>target) then
  44. stop()
  45. end
  46. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement