Advertisement
coinwalk

pissed off

Oct 6th, 2019
231
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. chance = 76.84
  2. base = balance/152000
  3. prebet = balance/152000
  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 = 76.84
  13. losecount = 0
  14. betcount += 1
  15. resetstats();
  16. bethigh=true
  17. else
  18. losecount += 1
  19. betcount = 0
  20. end
  21. if (losecount > 0) then
  22. chance = 66.6
  23. nextbet = previousbet*3
  24. bethigh = false
  25. end
  26. if (losecount > 1) then
  27. chance = 90
  28. nextbet = previousbet*15
  29. bethigh = true
  30. resetseed();
  31. end
  32. if (losecount > 2) then
  33. chance = 90
  34. nextbet = previousbet*15
  35. bethigh = true
  36. resetseed();
  37. end
  38. if balance > 1550000 then
  39. stop()
  40. end
  41. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement