Advertisement
coinwalk

huh special bot

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