Advertisement
coinwalk

such a good bot

Oct 14th, 2019
264
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. chance = 24.975
  2. nextbet = 0.00000001
  3. losecount = 0
  4. betcount = 0
  5. bethigh = false
  6.  
  7. function dobet()
  8.  
  9. if balance > 0.000001 then
  10. prebet = 0.00000001
  11. end
  12. if balance > 0.00001 then
  13. prebet = 0.00000002
  14. end
  15. if balance > 0.00003 then
  16. prebet = 0.00000003
  17. end
  18. if balance > 0.00007 then
  19. prebet = 0.00000004
  20. end
  21. if balance > 0.0001 then
  22. prebet = 0.00000005
  23. end
  24. if balance > 0.00017 then
  25. prebet = 0.00000006
  26. end
  27. if balance > 0.00020 then
  28. prebet = balance/10000
  29. end
  30. if win then
  31. bethigh = false
  32. betcount += 1
  33. losecount = 0
  34. else
  35. losecount += 1
  36. end
  37. if (losecount > 0) then
  38. nextbet = previousbet
  39. end
  40. if (math.fmod(losecount,2)==0) then
  41. nextbet = previousbet*2
  42. end
  43. if (betcount == 2) then
  44. nextbet = prebet
  45. betcount = 0
  46. end
  47. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement