SEJUNIE DICEBOT 'LUA' 2022 UPDATED STAKE CASINO MEDIUM BALANCE FLIP SCRIPT SAFE RISE %


SUBMITTED BY: boogeymanblue

DATE: Feb. 4, 2022, 3:06 p.m.

FORMAT: Lua

SIZE: 8.1 kB

HITS: 578

  1. --Warming up
  2. math.random(); math.random(); math.random()
  3. price = 37238.90
  4. stopLossUSD = 100
  5. stopLoss = stopLossUSD/price
  6. oldBalance = stopLoss
  7. takeProfitPercent = 0.1
  8. takeProfit = oldBalance*takeProfitPercent
  9. maxProfit = oldBalance*3
  10. listChance = {24.75, 19.8, 16.5, 13.75, 12.37, 11, 9.9}
  11. listPayout = {4, 5, 6, 7, 8, 9, 10}
  12. listMultiply = {1.35, 1.26, 1.21, 1.17, 1.15, 1.13, 1.12}
  13. listMultiplyLost = {10.67, 9.75, 9.6, 9, 9, 8.625, 9}
  14. listDivideBalance = {3700, 3800, 4430, 4390, 5170, 5290, 6660}
  15. divebalace = 5480
  16. mainbasebet = stopLoss/divebalace
  17. basebet = mainbasebet
  18. nextbet = basebet
  19. multiply = 1.12
  20. multiplyLoss = 8
  21. payout = 10
  22. chance = 9.90
  23. winStreak = 0
  24. maxWinStreak = 0
  25. lossStreak = 0
  26. maxStreakRS = 0
  27. seedRandomizerX = 0
  28. hiloRandomizerX = 0
  29. highProfit = 0
  30. highBalance = oldBalance
  31. lowProfit = 0
  32. timeStart = os.clock()
  33. timeRun = 0
  34. wager = 0
  35. CHANCE_RANDOMIZER = 0
  36. sleepNext = false
  37. lastTime = 0
  38. time = 1800
  39. timeMin = 600
  40. timeMax = 1800
  41. joker = 0
  42. countJoke = 0
  43. function (gendMaxStreakRS)()
  44. maxStreakRS = math.random(1,3)
  45. if(maxStreakRS <= 1)then
  46. maxStreakRS = 0
  47. elseif(maxStreakRS <= 2)then
  48. maxStreakRS = payout
  49. elseif(maxStreakRS <= 3)then
  50. maxStreakRS = payout * 2
  51. end
  52. end
  53. function seedRandomizer()
  54. seedRandomizerX = math.random(1, 3)
  55. if(seedRandomizerX == 2)then
  56. resetseed()
  57. end
  58. end
  59. function hiloRandomizer()
  60. hiloRandomizerX = math.random(1, 3)
  61. if(hiloRandomizerX == 2)then
  62. hiloRandomizerX = math.random(0, 1)
  63. if (hiloRandomizerX == 1) then
  64. bethigh = true
  65. else
  66. bethigh = false
  67. end
  68. end
  69. end
  70. function randomChane()
  71. CHANCE_RANDOMIZER = math.random(1, 4)
  72. if(CHANCE_RANDOMIZER == 1)then
  73. CHANCE_RANDOMIZER = math.random(1, #listChance)
  74. chance = listChance[CHANCE_RANDOMIZER]
  75. chanceBack = chance
  76. payout = listPayout[CHANCE_RANDOMIZER]
  77. multiply = listMultiply[CHANCE_RANDOMIZER]
  78. divebalace = listDivideBalance[CHANCE_RANDOMIZER]
  79. multiply = listMultiply[CHANCE_RANDOMIZER]
  80. multiplyLoss = listMultiplyLost[CHANCE_RANDOMIZER]
  81. end
  82. end
  83. function jokeDealer()
  84. joker = math.random(1, 50)
  85. if(joker == 25)then
  86. nextbet = 0.00014/price
  87. countJoke = countJoke + 1
  88. print("SEND JOKES...")
  89. end
  90. end
  91. function randomSleepTime()
  92. time = math.random(1, 6)
  93. if(time <= 1)then
  94. time = math.random(300, 600)
  95. elseif(time <= 3)then
  96. time = math.random(600, 1200)
  97. elseif(time <= 6)then
  98. time = math.random(1200, 1800)
  99. end
  100. end
  101. function sleepToNextBet()
  102. if(os.clock() - lastTime <= time)then
  103. typeBet = math.random(1, 2)
  104. newtime = time - (os.clock() - lastTime)
  105. print("[Wait]\t\t[" ..string.format("%.2d:%.2d", math.floor(newtime/60), math.floor(newtime%60)).. "] for next session...")
  106. nextbet = 0
  107. jokeDealer()
  108. else
  109. print("Back to bet...")
  110. hiloRandomizer()
  111. seedRandomizer()
  112. randomChane()
  113. gendMaxStreakRS()
  114. highBalance = oldBalance + profit
  115. mainbasebet = highBalance/divebalace
  116. basebet = mainbasebet
  117. nextbet = mainbasebet
  118. lossStreak = 0
  119. winStreak = 0
  120. sleepNext = false
  121. if(maxStreakRS == 0)then
  122. nextbet = basebet
  123. else
  124. nextbet = 0
  125. end
  126. end
  127. end
  128. hiloRandomizer()
  129. seedRandomizer()
  130. function dobet()
  131. wager = wager + nextbet
  132. if (win) then
  133. winStreak = winStreak + 1
  134. if(lossStreak >= maxStreakRS and lossStreak < maxStreakRS + payout * 2)then
  135. maxWinStreak = maxWinStreak + 1
  136. hiloRandomizer()
  137. seedRandomizer()
  138. randomChane()
  139. gendMaxStreakRS()
  140. mainbasebet = highBalance/divebalace
  141. basebet = mainbasebet
  142. nextbet = mainbasebet
  143. else
  144. winStreak = 0
  145. if(lossStreak >= maxStreakRS + payout * 2)then
  146. gendMaxStreakRS()
  147. basebet = basebet * multiplyLoss
  148. end
  149. maxWinStreak = 0
  150. end
  151. if(maxStreakRS == 0)then
  152. nextbet = basebet
  153. else
  154. nextbet = 0
  155. end
  156. lossStreak = 0
  157. else
  158. winStreak = 0
  159. lossStreak = lossStreak + 1
  160. if(lossStreak >= maxStreakRS and lossStreak < maxStreakRS + payout* 2)then
  161. if(nextbet == 0) then
  162. nextbet = basebet
  163. end
  164. nextbet = nextbet*multiply
  165. else
  166. nextbet = 0
  167. end
  168. end
  169. if(profit >= highProfit)then
  170. highProfit = profit
  171. highBalance = oldBalance + highProfit
  172. elseif(profit < lowProfit)then
  173. lowProfit = profit
  174. end
  175. timeRun = math.floor(os.clock() - timeStart)
  176. print("\n\n\n\n\n")
  177. print("<==========================================>")
  178. if(sleepNext)then
  179. sleepToNextBet()
  180. print("[Next Bet]:\t["..string.format("%.8f",nextbet*price).."]")
  181. print("[Chance]:\t\t["..string.format("%.2f",chance).."]")
  182. print("[Payout]:\t\t["..tostring(payout).."]")
  183. print("[Streak]:\t\t["..tostring(maxStreakRS).."]")
  184. else
  185. print("[Next Bet]:\t["..string.format("%.8f",nextbet*price).."]")
  186. print("[Chance]:\t\t["..string.format("%.2f",chance).."]")
  187. print("[Payout]:\t\t["..tostring(payout).."]")
  188. print("[Streak]:\t\t["..tostring(maxStreakRS).."]")
  189. print("[Next Bet]:\t["..string.format("%.8f",nextbet*price).."]")
  190. print("[Chance]:\t\t["..string.format("%.2f",chance).."]")
  191. print("[Payout]:\t\t["..tostring(payout).."]")
  192. print("[Streak]:\t\t["..tostring(maxStreakRS).."]")
  193. print("[Profit]:\t\t["..string.format("%.8f",profit*price).."] ["..string.format("%.4f",profit/(oldBalance)*100).."]%")
  194. print("[Base Bet]:\t["..string.format("%.8f",basebet*price).."] ["..string.format("%.4f",basebet/(oldBalance)*100).."]%")
  195. print("[High PF]:\t\t["..string.format("%.8f",highProfit*price).."] ["..string.format("%.4f",highProfit/(oldBalance)*100).."]%")
  196. print("[Low PF]:\t\t["..string.format("%.8f",lowProfit*price).."] ["..string.format("%.4f",lowProfit/(oldBalance)*100).."]%")
  197. print("[Sleep PF]:\t["..string.format("%.8f",takeProfit*price).."] ["..string.format("%.4f",takeProfit/(oldBalance)*100).."]%")
  198. if(timeRun > 0)then
  199. print("<==========================================>")
  200. print("[Wager]:\t\t["..string.format("%.8f",wager*price).."] ["..string.format("%.4f",wager/(oldBalance)*100).."]%")
  201. print("[Per hour]:\t["..string.format("%.8f",wager*price/timeRun*3600).."] ["..string.format("%.4f",wager/timeRun*3600/oldBalance*100).."]%")
  202. print("[Per day]:\t\t["..string.format("%.8f",wager*price/timeRun*86400).."] ["..string.format("%.4f",wager/timeRun*86400/oldBalance*100).."]%")
  203. end
  204. end
  205. print("<==========================================>")
  206. print("[Jokes ]:\t\t["..string.format("%d",countJoke).."]")
  207. print("<==========================================>")
  208. if(profit >= takeProfit) then
  209. takeProfit = profit + (oldBalance + profit)*takeProfitPercent
  210. sleepNext = true
  211. lastTime = os.clock()
  212. randomSleepTime()
  213. nextbet = 0
  214. highBalance = 0
  215. elseif(profit-nextbet <= stopLoss*(-1) or profit >= maxProfit)then
  216. stop()
  217. end
  218. end

comments powered by Disqus