Advertisement
coinwalk

cool

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