Advertisement
coinwalk

nice 99 sat

Dec 7th, 2019
235
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. chance = 26
  2. basebet = 0.00000001
  3. nextbet = 0.00000001
  4. bethigh = true
  5. losecount = 0
  6.  
  7. function dobet()
  8.  
  9. if (win) then
  10. chance = 26
  11. nextbet = basebet
  12. losecount = 0
  13. lol += 1
  14. else
  15. losecount += 1
  16. if (math.fmod(losecount,2)==0) then
  17. nextbet = previousbet*2
  18. end
  19.  
  20. end
  21. if (lol==2) then
  22. if (bethigh==true) then bethigh=false else bethigh=true end
  23. lol = 0
  24. end
  25. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement