Advertisement
coinwalk

similar please seuntjie only with several losses then 5%

Oct 9th, 2019
225
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 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. losscount = 0
  14. else
  15. losscount += 1
  16. nextbet = previousbet*25
  17. end
  18. if (losscount > 0) or (wincount > 25) then
  19. chance = 5
  20. nextbet = previousbet*1.1
  21. bethigh = false
  22. wincount = 0
  23. end
  24. if (losscount > 8) then
  25. chance = 95
  26. nextbet = previousbet*100
  27. losscount = 0
  28. wincount = 0
  29. bethigh = true
  30. end
  31. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement