Advertisement
coinwalk

95% blaster

Apr 23rd, 2020
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. chance = 95
  2. bethigh = true
  3. target = 20000
  4. basebet = balance/50000
  5. nextbet = basebet
  6. more = balance
  7. read = balance
  8. los = 0
  9. won = 0
  10. function dobet()
  11. if (win) then
  12. won+=1
  13. else
  14. los+=1
  15. end
  16. if (won == 1) then
  17. nextbet = previousbet*4
  18. won = 0
  19. end
  20. if (los == 1) then
  21. nextbet = previousbet*2
  22. los = 0
  23. end
  24. if balance > more and win then
  25. nextbet = balance/50000
  26. more = balance
  27. end
  28. if nextbet > balance then
  29. nextbet = balance/50000
  30. more = balance
  31. end
  32. if balance > target then
  33. stop()
  34. end
  35. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement