Advertisement
coinwalk

sweet

Sep 14th, 2019
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. chance = 49.5
  2. base = balance/5000000
  3. prebet = balance/5000000
  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. end
  22. if (losecount > 4) then
  23. chance = 95
  24. nextbet= previousbet*65
  25. end
  26. if (losecount > 5) then
  27. chance = 95
  28. nextbet= previousbet*25
  29. end
  30. if balance > 100000 then
  31. stop()
  32. end
  33. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement