Advertisement
coinwalk

omg 8100x

Jun 8th, 2020
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. chance = 49.95
  2. basebet = 0.01
  3. nextbet = basebet
  4. more = balance
  5. loss = 0
  6. nice = 0
  7. target = 50000
  8. function dobet()
  9. if !win then
  10. loss+=1
  11. nice+=1
  12. end
  13. if (nice == 7) then
  14. bethigh = !bethigh
  15. nice = 0
  16. end
  17. if (balance > more) then
  18. nextbet = basebet
  19. more = balance
  20. else
  21. if (math.fmod(loss,4)==0) then
  22. nextbet = previousbet*((math.random(20,22))/10)
  23. else
  24. nextbet = previousbet
  25. end
  26. end
  27. if balance>target then
  28. stop()
  29. end
  30. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement