Advertisement
coinwalk

king kong

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