Advertisement
coinwalk

future

Feb 2nd, 2020
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.68 KB | None | 0 0
  1. hi = 0
  2. lo = 0
  3. ho = 0
  4. mo = 0
  5. base = 0.000001
  6. nextbet = base
  7. chance = 33
  8. bethigh = false
  9. target = 3000000
  10. function dobet()
  11. if win then
  12. nextbet = base
  13. chance = 33
  14. end
  15. if !win and (chance==78) then
  16. nextbet = previousbet*4
  17. end
  18. if !win and (chance==33) then
  19. nextbet = previousbet*1.5
  20. end
  21. if !win and (chance==45) then
  22. nextbet = previousbet*2.2
  23. end
  24. if lastBet.Roll > 78 then
  25. ho +=1
  26. mo = 0
  27. hi = 0
  28. lo = 0
  29. end
  30. if lastBet.Roll < 22 then
  31. mo +=1
  32. ho = 0
  33. lo = 0
  34. hi = 0
  35. end
  36. if lastBet.Roll > 55 then
  37. hi +=1
  38. lo = 0
  39. end
  40. if lastBet.Roll < 45 then
  41. lo +=1
  42. hi = 0
  43. end
  44. if lastBet.Roll > 45 and lastBet.Roll < 55 then
  45. hi = 0
  46. lo = 0
  47. end
  48. if mo >= 4 then
  49. hi = 0
  50. lo = 0
  51. nextbet = math.random(3,6)/100*balance
  52. chance = 78
  53. bethigh = false
  54. end
  55. if ho >= 4 then
  56. hi = 0
  57. lo = 0
  58. nextbet = math.random(3,6)/100*balance
  59. chance = 78
  60. bethigh = true
  61. end
  62. if lo >= 10 then
  63. hi = 0
  64. lo = 0
  65. nextbet = math.random(3,6)/100*balance
  66. chance = 45
  67. bethigh = false
  68. end
  69. if hi >= 10 then
  70. hi = 0
  71. lo = 0
  72. nextbet = math.random(3,6)/100*balance
  73. chance = 45
  74. bethigh = true
  75. end
  76. print(" ")
  77. print("hi: "..hi)
  78. print("lo: "..lo)
  79. print("ho: "..ho)
  80. print("mo: "..mo)
  81. print(" ")
  82. if balance > target then
  83. stop()
  84. end
  85. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement