Advertisement
coinwalk

kill casino

Sep 26th, 2019
233
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. chance = 90
  2. base = balance/50000
  3. prebet = balance/50000
  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 = 90
  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
  24. bethigh = false
  25. bethigh = false
  26. end
  27. if (losecount > 1) then
  28. chance = 49.95
  29. nextbet = previousbet*3
  30. bethigh = true
  31. end
  32. if (losecount > 2) then
  33. chance = 47.5
  34. nextbet = previousbet*3
  35. bethigh = false
  36. end
  37. if (losecount > 3) then
  38. chance = 49.95
  39. nextbet = previousbet*3
  40. bethigh = true
  41. end
  42. end
  43. if (losecount > 4) then
  44. chance = 95
  45. nextbet= previousbet*200
  46. end
  47. if (losecount > 5) then
  48. chance = 95
  49. nextbet= previousbet*26
  50. end
  51. if balance > 10000 then
  52. stop()
  53. end
  54. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement