Advertisement
coinwalk

lol

Sep 10th, 2021
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. basebet = 0.00000001
  2. chance = 4.95
  3. bethigh = false
  4. nextbet = basebet
  5. target = 1
  6. old = balance
  7. lol = 0
  8. resetstats()
  9.  
  10. function dobet()
  11. if win then
  12. bethigh = !bethigh
  13. lol = 0
  14. else
  15. lol = lol+1
  16. end
  17. if lol>=15 then
  18. nextbet = previousbet*2
  19. lol = 0
  20. end
  21. if balance>=old then
  22. lol = 0
  23. nextbet = basebet
  24. old = balance
  25. end
  26. if (balance>target) then
  27. stop()
  28. end
  29. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement