FIRST RELEASE - $$ NEW METHOD LUA SCRIPT for www.Just-Dice.com - Never Released - Killswitch Solutions 2022


SUBMITTED BY: boogeymanblue

DATE: Feb. 6, 2022, 5:07 p.m.

FORMAT: Lua

SIZE: 8.8 kB

HITS: 616

  1. --Brand New LUA Script by Killswitch Solutions
  2. --Updated Current for 2022!
  3. --Use with DICEBOT 3.14 on www.Just-Dice.com (Register on Xchange and convert btc to CLAM)
  4. --Everything is set just copy and paste all you have to do is paste into codebox
  5. --Log in to site from dicebot after loggin in on browser
  6. --set price to current CLAM to USD rate
  7. --set stopLoss/USD to your balance in CLAM at the time
  8. --click on CONSOLE tab and at bottom on input box type nextbet=(whatever amount you want to bet)
  9. --Do the math dont just pick a random amount
  10. --then type start()
  11. --click one bet on the browser to give DICEBOT the info
  12. --THATS IT LET IT DO ITS THING, SHARE LINK IF YOU LIKE (Helps us write code)
  13. --Warming up
  14. math.random(); math.random(); math.random()
  15. price = 0.73
  16. stopLossUSD = 0.01
  17. stopLoss = stopLossUSD/price
  18. oldBalance = stopLoss
  19. takeProfitPercent = 0.1
  20. takeProfit = oldBalance*takeProfitPercent
  21. maxProfit = oldBalance*3
  22. listChance = {24.75, 19.8, 16.5, 13.75, 12.37, 11, 9.9}
  23. listPayout = {4, 5, 6, 7, 8, 9, 10}
  24. listMultiply = {1.35, 1.26, 1.21, 1.17, 1.15, 1.13, 1.12}
  25. listMultiplyLost = {10.67, 9.75, 9.6, 9, 9, 8.625, 9}
  26. listDivideBalance = {3700, 3800, 4430, 4390, 5170, 5290, 6660}
  27. divebalace = 5480
  28. mainbasebet = stopLoss/divebalace
  29. basebet = mainbasebet
  30. nextbet = basebet
  31. multiply = 1.12
  32. multiplyLoss = 8
  33. payout = 10
  34. chance = 9.90
  35. winStreak = 0
  36. maxWinStreak = 0
  37. lossStreak = 0
  38. maxStreakRS = 0
  39. seedRandomizerX = 0
  40. hiloRandomizerX = 0
  41. highProfit = 0
  42. highBalance = oldBalance
  43. lowProfit = 0
  44. timeStart = os.clock()
  45. timeRun = 0
  46. wager = 0
  47. CHANCE_RANDOMIZER = 0
  48. sleepNext = false
  49. lastTime = 0
  50. time = 1800
  51. timeMin = 600
  52. timeMax = 1800
  53. joker = 0
  54. countJoke = 0
  55. function gendMaxStreakRS()
  56. maxStreakRS = math.random(1,3)
  57. if(maxStreakRS <= 1)then
  58. maxStreakRS = 0
  59. elseif(maxStreakRS <= 2)then
  60. maxStreakRS = payout
  61. elseif(maxStreakRS <= 3)then
  62. maxStreakRS = payout * 2
  63. end
  64. end
  65. function seedRandomizer()
  66. seedRandomizerX = math.random(1, 3)
  67. if(seedRandomizerX == 2)then
  68. resetseed()
  69. end
  70. end
  71. function hiloRandomizer()
  72. hiloRandomizerX = math.random(1, 3)
  73. if(hiloRandomizerX == 2)then
  74. hiloRandomizerX = math.random(0, 1)
  75. if (hiloRandomizerX == 1) then
  76. bethigh = true
  77. else
  78. bethigh = false
  79. end
  80. end
  81. end
  82. function randomChane()
  83. CHANCE_RANDOMIZER = math.random(1, 4)
  84. if(CHANCE_RANDOMIZER == 1)then
  85. CHANCE_RANDOMIZER = math.random(1, #listChance)
  86. chance = listChance[CHANCE_RANDOMIZER]
  87. chanceBack = chance
  88. payout = listPayout[CHANCE_RANDOMIZER]
  89. multiply = listMultiply[CHANCE_RANDOMIZER]
  90. divebalace = listDivideBalance[CHANCE_RANDOMIZER]
  91. multiply = listMultiply[CHANCE_RANDOMIZER]
  92. multiplyLoss = listMultiplyLost[CHANCE_RANDOMIZER]
  93. end
  94. end
  95. function jokeDealer()
  96. joker = math.random(1, 50)
  97. if(joker == 25)then
  98. nextbet = 0.00014/price
  99. countJoke = countJoke + 1
  100. print("SEND JOKES...")
  101. end
  102. end
  103. function randomSleepTime()
  104. time = math.random(1, 6)
  105. if(time <= 1)then
  106. time = math.random(300, 600)
  107. elseif(time <= 3)then
  108. time = math.random(600, 1200)
  109. elseif(time <= 6)then
  110. time = math.random(1200, 1800)
  111. end
  112. end
  113. function sleepToNextBet()
  114. if(os.clock() - lastTime <= time)then
  115. typeBet = math.random(1, 2)
  116. newtime = time - (os.clock() - lastTime)
  117. print("[Wait]\t\t[" ..string.format("%.2d:%.2d", math.floor(newtime/60), math.floor(newtime%60)).. "] for next session...")
  118. nextbet = 0
  119. jokeDealer()
  120. else
  121. print("Back to bet...")
  122. hiloRandomizer()
  123. seedRandomizer()
  124. randomChane()
  125. gendMaxStreakRS()
  126. highBalance = oldBalance + profit
  127. mainbasebet = highBalance/divebalace
  128. basebet = mainbasebet
  129. nextbet = mainbasebet
  130. lossStreak = 0
  131. winStreak = 0
  132. sleepNext = false
  133. if(maxStreakRS == 0)then
  134. nextbet = basebet
  135. else
  136. nextbet = 0
  137. end
  138. end
  139. end
  140. hiloRandomizer()
  141. seedRandomizer()
  142. function dobet()
  143. wager = wager + nextbet
  144. if (win) then
  145. winStreak = winStreak + 1
  146. if(lossStreak >= maxStreakRS and lossStreak < maxStreakRS + payout * 2)then
  147. maxWinStreak = maxWinStreak + 1
  148. hiloRandomizer()
  149. seedRandomizer()
  150. randomChane()
  151. gendMaxStreakRS()
  152. mainbasebet = highBalance/divebalace
  153. basebet = mainbasebet
  154. nextbet = mainbasebet
  155. else
  156. winStreak = 0
  157. if(lossStreak >= maxStreakRS + payout * 2)then
  158. gendMaxStreakRS()
  159. basebet = basebet * multiplyLoss
  160. end
  161. maxWinStreak = 0
  162. end
  163. if(maxStreakRS == 0)then
  164. nextbet = basebet
  165. else
  166. nextbet = 0
  167. end
  168. lossStreak = 0
  169. else
  170. winStreak = 0
  171. lossStreak = lossStreak + 1
  172. if(lossStreak >= maxStreakRS and lossStreak < maxStreakRS + payout* 2)then
  173. if(nextbet == 0) then
  174. nextbet = basebet
  175. end
  176. nextbet = nextbet*multiply
  177. else
  178. nextbet = 0
  179. end
  180. end
  181. if(profit >= highProfit)then
  182. highProfit = profit
  183. highBalance = oldBalance + highProfit
  184. elseif(profit < lowProfit)then
  185. lowProfit = profit
  186. end
  187. timeRun = math.floor(os.clock() - timeStart)
  188. print("\n\n\n\n\n")
  189. print("<==========================================>")
  190. if(sleepNext)then
  191. sleepToNextBet()
  192. print("[Next Bet]:\t["..string.format("%.8f",nextbet*price).."]")
  193. print("[Chance]:\t\t["..string.format("%.2f",chance).."]")
  194. print("[Payout]:\t\t["..tostring(payout).."]")
  195. print("[Streak]:\t\t["..tostring(maxStreakRS).."]")
  196. else
  197. print("[Next Bet]:\t["..string.format("%.8f",nextbet*price).."]")
  198. print("[Chance]:\t\t["..string.format("%.2f",chance).."]")
  199. print("[Payout]:\t\t["..tostring(payout).."]")
  200. print("[Streak]:\t\t["..tostring(maxStreakRS).."]")
  201. print("[Next Bet]:\t["..string.format("%.8f",nextbet*price).."]")
  202. print("[Chance]:\t\t["..string.format("%.2f",chance).."]")
  203. print("[Payout]:\t\t["..tostring(payout).."]")
  204. print("[Streak]:\t\t["..tostring(maxStreakRS).."]")
  205. print("[Profit]:\t\t["..string.format("%.8f",profit*price).."] ["..string.format("%.4f",profit/(oldBalance)*100).."]%")
  206. print("[Base Bet]:\t["..string.format("%.8f",basebet*price).."] ["..string.format("%.4f",basebet/(oldBalance)*100).."]%")
  207. print("[High PF]:\t\t["..string.format("%.8f",highProfit*price).."] ["..string.format("%.4f",highProfit/(oldBalance)*100).."]%")
  208. print("[Low PF]:\t\t["..string.format("%.8f",lowProfit*price).."] ["..string.format("%.4f",lowProfit/(oldBalance)*100).."]%")
  209. print("[Sleep PF]:\t["..string.format("%.8f",takeProfit*price).."] ["..string.format("%.4f",takeProfit/(oldBalance)*100).."]%")
  210. if(timeRun > 0)then
  211. print("<==========================================>")
  212. print("[Wager]:\t\t["..string.format("%.8f",wager*price).."] ["..string.format("%.4f",wager/(oldBalance)*100).."]%")
  213. print("[Per hour]:\t["..string.format("%.8f",wager*price/timeRun*3600).."] ["..string.format("%.4f",wager/timeRun*3600/oldBalance*100).."]%")
  214. print("[Per day]:\t\t["..string.format("%.8f",wager*price/timeRun*86400).."] ["..string.format("%.4f",wager/timeRun*86400/oldBalance*100).."]%")
  215. end
  216. end
  217. print("<==========================================>")
  218. print("[Jokes ]:\t\t["..string.format("%d",countJoke).."]")
  219. print("<==========================================>")
  220. if(profit >= takeProfit) then
  221. takeProfit = profit + (oldBalance + profit)*takeProfitPercent
  222. sleepNext = true
  223. lastTime = os.clock()
  224. randomSleepTime()
  225. nextbet = 0
  226. highBalance = 0
  227. elseif(profit-nextbet <= stopLoss*(-1) or profit >= maxProfit)then
  228. stop()
  229. end
  230. end

comments powered by Disqus