Advertisement
coinwalk

future2000

Feb 2nd, 2020
294
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.77 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 lastBet.Roll > 22 and lastBet.Roll < 78 then
  49. ho = 0
  50. mo = 0
  51. end
  52. if mo >= 4 then
  53. hi = 0
  54. lo = 0
  55. nextbet = math.random(2,4)/100*balance
  56. chance = 78
  57. bethigh = false
  58. end
  59. if ho >= 4 then
  60. hi = 0
  61. lo = 0
  62. nextbet = math.random(2,4)/100*balance
  63. chance = 78
  64. bethigh = true
  65. end
  66. if lo >= 10 then
  67. hi = 0
  68. lo = 0
  69. nextbet = math.random(3,6)/100*balance
  70. chance = 45
  71. bethigh = false
  72. end
  73. if hi >= 10 then
  74. hi = 0
  75. lo = 0
  76. nextbet = math.random(3,6)/100*balance
  77. chance = 45
  78. bethigh = true
  79. end
  80. print(" ")
  81. print("hi: "..hi)
  82. print("lo: "..lo)
  83. print("ho: "..ho)
  84. print("mo: "..mo)
  85. print(" ")
  86. if balance > target then
  87. stop()
  88. end
  89. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement