Advertisement
coinwalk

use this

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