Advertisement
coinwalk

this is what snowy uses

Oct 31st, 2019
280
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1. chance = 95
  2. loss = 0
  3. nextbet = balance/5000000
  4. prebet = balance/5000000
  5. bethigh = true
  6. mick = 0
  7. nick = 0
  8. lose = 0
  9. function dobet()
  10. if win then
  11. lose = 0
  12. nextbet = balance/5000000
  13. chance = 95
  14. bethigh = true
  15. nick += 1
  16. else
  17. loss += 1
  18. lose += 1
  19. mick += 1
  20. nick = 0
  21. end
  22. if nick > 7 then
  23. mick = 0
  24. end
  25. if (lose > 0) and (chance==95) then
  26. nextbet = previousbet*21
  27. lose += 1
  28. end
  29. if (loss >= 2) and (mick > 1) then
  30. chance = 5
  31. nextbet = previousbet*1.1
  32. bethigh = false
  33. mick = 0
  34. loss = 0
  35. end
  36. if win and (chance==5) then
  37. chance = 95
  38. end
  39. if (lose == 5) and (chance==5)then
  40. chance = 95
  41. nextbet = previousbet*100
  42. mick = 0
  43. bethigh = true
  44. end
  45. if (lose == 10) and (chance==5)then
  46. chance = 95
  47. nextbet = previousbet*100
  48. mick = 0
  49. bethigh = true
  50. end
  51. if (lose == 15) and (chance==5)then
  52. chance = 95
  53. nextbet = previousbet*100
  54. mick = 0
  55. bethigh = true
  56. end
  57. if (lose > 20) and (chance==5)then
  58. chance = 95
  59. nextbet = previousbet*100
  60. mick = 0
  61. bethigh = true
  62. end
  63. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement