Advertisement
coinwalk

lose lose lose win win

Sep 14th, 2019
298
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. chance = 19.8
  2. base = balance/50000
  3. prebet = balance/50000
  4. nextbet = prebet
  5. losecount = 0
  6. betcount = 0
  7.  
  8. function dobet()
  9. if win then
  10. nextbet = prebet
  11. chance = 19.8
  12. losecount = 0
  13. betcount += 1
  14. else
  15. losecount += 1
  16. betcount = 0
  17.  
  18. end
  19. if (losecount > 0) then
  20. chance = 19.8
  21. nextbet=previousbet*1.4
  22. end
  23. if (losecount > 4) then
  24. chance = 95
  25. nextbet= previousbet*65
  26. end
  27. if (losecount > 5) then
  28. chance = 95
  29. nextbet= previousbet*25
  30. end
  31. if balance > 100000 then
  32. stop()
  33. end
  34. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement