Advertisement
coinwalk

need similar

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