Advertisement
coinwalk

snowybot

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