Advertisement
coinwalk

lol trial c99 c5

Oct 9th, 2019
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. chance = 95
  2. basebet = balance/20000
  3. nextbet = balance/20000
  4. losscount = 0
  5. wincount = 0
  6. bethigh = true
  7. function dobet()
  8. if win then
  9. bethigh = true
  10. nextbet = basebet
  11. chance = 95
  12. wincount += 1
  13. else
  14. losscount += 1
  15. nextbet = previousbet*25
  16. end
  17. if (losscount > 0) or (wincount > 25) then
  18. chance = 5
  19. nextbet = previousbet*1.1
  20. bethigh = false
  21. wincount = 0
  22. end
  23. if (losscount > 8) then
  24. chance = 95
  25. nextbet = previousbet*100
  26. losscount = 0
  27. wincount = 0
  28. bethigh = true
  29. end
  30. end
  31. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement