Advertisement
coinwalk

mega script

Feb 8th, 2020
273
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.67 KB | None | 0 0
  1. chance = 65
  2. bethigh = false
  3. target = 750000
  4. prebet = 0
  5. nextbet = prebet
  6. big = balance/50000
  7. zim = 0
  8. zag = 0
  9. zlim = 0
  10. zlag = 0
  11. bin = 1.5
  12. boob = 1
  13. goz = 2
  14. min = 33
  15. minz = 67
  16. max = 49.95
  17. maxz = 50.05
  18. pol = 65
  19. lol = 2
  20. function dobet()
  21.  
  22. if (win) then
  23. boob = 1
  24. chance = pol
  25. nextbet = prebet
  26. bethigh = false
  27. else
  28. boob = 0
  29. end
  30. if (chance==max) and !win then
  31. nextbet = previousbet*goz
  32. end
  33. if lastBet.Roll > maxz then
  34. zim += 1
  35. zag = 0
  36. end
  37. if lastBet.Roll < max then
  38. zim = 0
  39. zag += 1
  40. end
  41. if (chance==max) and boob==0 and zag >= lol then
  42. nextbet = previousbet*goz
  43. bethigh = true
  44. end
  45. if (chance==max) and boob==0 and zim >= lol then
  46. nextbet = previousbet*goz
  47. bethigh = false
  48. end
  49. if zag >= 2 and chance==pol then
  50. bethigh = false
  51. nextbet = big
  52. chance = max
  53. zlim = 0
  54. zlag = 0
  55. zim = 0
  56. zag = 0
  57. end
  58. if (chance==min) and zag >= lol and boob==0 then
  59. nextbet = previousbet*goz
  60. bethigh = true
  61. zlim = 0
  62. zlag = 0
  63. zim = 0
  64. zag = 0
  65. chance = max
  66. end
  67. if (chance ==min) and zim >= lol and boob==0 then
  68. nextbet = previousbet*goz
  69. bethigh = false
  70. chance = max
  71. zlim = 0
  72. zlag = 0
  73. zim = 0
  74. zag = 0
  75. end
  76. if zim >= 2 and chance==pol then
  77. bethigh = true
  78. nextbet = big
  79. chance = max
  80. zlim = 0
  81. zlag = 0
  82. zim = 0
  83. zag = 0
  84. end
  85. if lastBet.Roll > minz then
  86. zlim += 1
  87. zlag = 0
  88. end
  89. if (chance==min) and boob==0 then
  90. nextbet = previousbet*bin
  91. end
  92. if lastBet.Roll < min then
  93. zlim = 0
  94. zlag += 1
  95. end
  96. if zlag >= 2 and chance==pol then
  97. bethigh = false
  98. nextbet = big
  99. chance = min
  100. zlag = 0
  101. zlim = 0
  102. zim = 0
  103. zag = 0
  104. end
  105. if zlim >= 2 and chance==pol then
  106. bethigh = true
  107. nextbet = big
  108. chance = min
  109. zlim = 0
  110. zlag = 0
  111. zim = 0
  112. zag = 0
  113. end
  114. if ((chance ==max) and zlag >= lol and !win) then
  115. nextbet = previousbet*bin
  116. bethigh = true
  117. chance = min
  118. zlim = 0
  119. zlag = 0
  120. zim = 0
  121. zag = 0
  122. end
  123. if ((chance==max) and zlim >= lol and !win) then
  124. nextbet = previousbet*bin
  125. bethigh = false
  126. chance = min
  127. zlim = 0
  128. zlag = 0
  129. zim = 0
  130. zag = 0
  131. end
  132. if (chance==min) and boob==0 and zlag >= lol then
  133. nextbet = previousbet*bin
  134. bethigh = true
  135. end
  136. if (chance==min) and boob==0 and zlim >= lol then
  137. nextbet = previousbet*bin
  138. bethigh = false
  139. end
  140. if balance > target then
  141. stop()
  142. end
  143. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement