Advertisement
coinwalk

there sheikh

Sep 21st, 2020
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. basebet = 0.01
  2. nextbet = basebet
  3. bethigh = false
  4. chance = 24
  5. james = balance
  6. botbuddy = 0
  7. target = balance+150
  8. losss = balance-150
  9. function dobet()
  10. if win then
  11. botbuddy = 0
  12. else
  13. botbuddy+=1
  14. end
  15. if (botbuddy==2) then
  16. nextbet = previousbet*2
  17. end
  18. if (botbuddy==6) then
  19. nextbet = previousbet*2
  20. end
  21. if (botbuddy==16) then
  22. nextbet = previousbet*2
  23. botbuddy = 0
  24. end
  25. if balance>james then
  26. nextbet = basebet
  27. botbuddy = 0
  28. james = balance
  29. end
  30. if balance>target then
  31. tip(336178519,150)
  32. balance = james
  33. nextbet = basebet
  34. end
  35. if balance<losss then
  36. stop()
  37. end
  38. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement