Advertisement
coinwalk

ok

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