Advertisement
coinwalk

Untitled

Jan 2nd, 2021
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. basebet = balance/8600
  2. chance = 49.95
  3. nextbet = basebet
  4. bethigh = false
  5. snowy = 0
  6. bill = 0
  7. target = 500000
  8. olly = balance
  9. resetstats()
  10.  
  11. function dobet()
  12. snowy+=1
  13. if (snowy>=(math.random(20,30))) then
  14. nextbet = previousbet*2
  15. snowy = 0
  16. end
  17. if (balance>=olly) then
  18. nextbet = basebet
  19. olly = balance
  20. end
  21. if (balance>target) then
  22. stop()
  23. end
  24. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement