Advertisement
coinwalk

lol

Feb 20th, 2021
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. fraction = 50000
  2. basebet = balance/fraction
  3. base = basebet
  4. chance = 24.975
  5. nextbet = basebet
  6. bethigh = false
  7. oldbal = balance
  8. target = 32000
  9. shit = balance
  10.  
  11.  
  12. function dobet()
  13. if (balance<=(shit-(base*(math.random(6,10))))) then
  14. nextbet = previousbet*2
  15. shit = balance
  16. base = nextbet
  17. end
  18. if (balance>(shit+base)) then
  19. nextbet = previousbet*2
  20. base = nextbet
  21. shit = balance
  22. end
  23. if (balance>=oldbal) and win then
  24. nextbet = balance/fraction
  25. base = balance/fraction
  26. shit = balance
  27. oldbal = balance
  28. end
  29. if balance>=target then
  30. stop()
  31. end
  32. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement