Advertisement
coinwalk

try this too

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