Advertisement
coinwalk

cool bot

Sep 11th, 2020
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. basebet = balance/25600
  2. chance = 12
  3. uwn = 0
  4. nextbet = basebet
  5. bethigh = true
  6. james = balance
  7. target = balance*4
  8. bot = 0
  9. function dobet()
  10.  
  11. if (win) then
  12. uwn+=1
  13. bot = 0
  14. bethigh = !bethigh
  15. else
  16. bot+=1
  17. uwn = 0
  18. end
  19. if (uwn==1) then
  20. nextbet = previousbet * 1.2
  21. end
  22.  
  23. if (uwn==2) then
  24. nextbet = previousbet * 1.5
  25. end
  26.  
  27. if (uwn==3) then
  28. nextbet = previousbet * 2
  29. end
  30. if (bot==2) then
  31. nextbet = previousbet*1.3
  32. end
  33. if (bot==6) then
  34. nextbet = previousbet*1.5
  35. end
  36. if (bot==16) then
  37. nextbet = previousbet*2
  38. bot = 0
  39. end
  40. if (uwn==4) then
  41. uwn = 0
  42. end
  43. if (balance>james) then
  44. nextbet = basebet
  45. uwn = 0
  46. bot = 0
  47. james = balance
  48. end
  49. if balance>target then
  50. stop()
  51. end
  52. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement