Advertisement
coinwalk

that'll stupt em

Sep 21st, 2019
228
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. chance = 49.95
  2. base = balance/500000
  3. prebet = balance/500000
  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 = 49.95
  23. nextbet=previousbet*2
  24. bethigh=true
  25. end
  26. if (losecount > 3) then
  27. chance = 49.95
  28. nextbet= previousbet*15
  29. end
  30. if (losecount > 4) then
  31. chance = 49.95
  32. nextbet= previousbet*2
  33. end
  34. if (losecount > 10) then
  35. chance = 49.95
  36. nextbet= previousbet*20
  37. end
  38. if (losecount > 11) then
  39. chance = 49.95
  40. nextbet= previousbet*2
  41. end
  42. if balance > 10000 then
  43. stop()
  44. end
  45. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement