Advertisement
Guest User

Untitled

a guest
Jun 19th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.57 KB | None | 0 0
  1. -- #########################
  2. -- CFG CANIHOJR
  3. -- #########################
  4. ------------------------------
  5. -- Inicializacion
  6. riesgo = 14 -- Riesgo del 5Stars, por defecto es 14, (13 mas riesgo, 15 menos riesgo)
  7. balancetrucado = 0.00032000 -- Engaña al script para que piense que tienes más balance y empezar apuestas mas fuertes
  8. retirar = false -- Activa o desactiva TIPS (Necesitas DiceBot de Colbit)
  9. saldoretirar = 0.00001001 -- Cuanto te llevas al banco
  10. cadacuantoretirar = 0.00002000 -- Cada cuanto profit retiras el saldo al banco
  11. mibanco = '3c4a2250-9104-42d3-b39c-6406c9a7c51d' -- Banco PrimeDice
  12. --mibanco = '1380f835-d6fb-4106-a161-ede86099a636' -- Banco Stake
  13.  
  14. temporal = 0 -- No tocar.
  15. balanceinicio = balance -- Calcula Profit, no cambiar.
  16. nostop = true
  17. -------------------------------
  18.  
  19. --##### NO TOCAR A PARTIR DE AQUI ####
  20.  
  21.  
  22. newbase =(balancetrucado/(2^riesgo))
  23. betcount=0
  24. bethigh=true
  25. chance=90.00
  26. counter=0
  27. high=0
  28. loss=0
  29. losscount=0
  30. lostchance=0
  31. low=0
  32. multiplier=2
  33. prebet = 0.00000000
  34. preroll=14
  35. resetseed()
  36. resetstats()
  37. session=0
  38. wincount=0
  39. wins = 0
  40. evencount = 0
  41. maxlosscount = 0
  42. maxwincount = 0
  43. fiveStars = false
  44. roll = 0
  45. countloss = 0
  46. balanceminimo = 0.00001000
  47. rolls = 0
  48. num = 0
  49. last = 0
  50. objetivo = 0.00001000
  51. betting = 0.00001000
  52. base_betting = 0.00001000
  53. ganancias = 0.00000000
  54. intentos = 0
  55. recuperar = 0
  56. seguidas = 0
  57. t = 0
  58. max_seguidas = 2
  59.  
  60. function dobet()
  61. if ganancias >= objetivo then
  62. if fiveStars == true then
  63. fivestars = false
  64. chance = 90
  65. ganancias = 0
  66. else
  67. fiveStars = true
  68. chance = 49.5
  69. ganancias = 0
  70. end
  71. end
  72.  
  73. if (fiveStars == true) then
  74. if (betcount < preroll) then
  75. betcount = betcount+ 1
  76. nextbet = prebet
  77.  
  78. if (win) then
  79. wins = wins + 1
  80. if(nextbet > 0) then
  81. ganancias += nextbet * (100 - chance) / 100
  82. end
  83. else
  84. loss = loss + 1
  85. ganancias -= nextbet
  86. end
  87. end
  88.  
  89. if ((betcount == preroll) or (betcount > preroll)) then
  90. if (betcount == preroll) then
  91. wins = preroll - loss
  92. betcount = betcount + 1
  93. count = wins - loss
  94.  
  95. if ((count == 0) or (count == -10) or (count == 10)) then
  96. nextbet = prebet
  97. evencount = 1
  98. print("Resetting")
  99. else
  100. if ((count == -12) or (count == -8) or (count == -6) or (count == -2) or (count == 4 ) or (count == 8 ) or (count == 14 )) then
  101. if losscount==0 then
  102. newbase = (balancetrucado/(2^riesgo))
  103. nextbet = newbase
  104. else
  105. nextbet = newbase * (2^losscount)
  106. bethigh = true
  107. end
  108.  
  109. else
  110. if (losscount == 0) then
  111. nextbet = newbase
  112. else
  113. nextbet = newbase * (2^losscount)
  114. bethigh = false
  115. end
  116. end
  117. end
  118. else
  119. if (evencount == 1) then
  120. print("maxwincount: ".. maxwincount)
  121. print("maxlosscount: ".. maxlosscount)
  122. print (string.format("New Base: %.8f", newbase))
  123. bethigh = true
  124. nextbet = prebet
  125. betcount = 0
  126. wins = 0
  127. loss = 0
  128. resetstats()
  129. resetseed()
  130. evencount = 0
  131.  
  132. else
  133. if (win) then
  134. wincount += 1
  135.  
  136. if (wincount > maxwincount) then
  137. maxwincount = wincount
  138. end
  139.  
  140. losscount = 0
  141. print("maxwincount: ".. maxwincount)
  142. print("maxlosscount: ".. maxlosscount)
  143. print (string.format("New Base: %.8f", newbase))
  144. bethigh = true
  145. nextbet = prebet
  146. betcount = 0
  147. wins = 0
  148. loss = 0
  149. resetstats()
  150. resetseed()
  151. else
  152. losscount += 1
  153.  
  154. if (losscount > maxlosscount) then
  155. maxlosscount = losscount
  156. end
  157.  
  158. wincount = 0
  159. print("maxwincount: ".. maxwincount)
  160. print("maxlosscount: ".. maxlosscount)
  161. print (string.format("New Base: %.8f", newbase))
  162. bethigh = true
  163. nextbet = prebet
  164. betcount = 0
  165. wins = 0
  166. loss = 0
  167. resetstats()
  168. resetseed()
  169. end
  170. end
  171. end
  172. end
  173. else
  174. if (win) then
  175. ganancias += nextbet * (100 - chance) / 100
  176. if(nextbet > base_betting) then
  177. recuperar = recuperar - 1
  178. t = math.random(1, 2)
  179. end
  180.  
  181. if(nextbet > 0) then
  182. num = 0
  183. rolls = 0
  184. nextbet = 0.00000000
  185. countloss = 0
  186. last = 0
  187. betting = base_betting
  188. intentos = 0
  189. end
  190. seguidas = 0
  191. else
  192. ganancias -= nextbet
  193. if(nextbet > 0) then
  194. recuperar += math.pow(10, seguidas -1)
  195. betting = base_betting
  196. num = math.random(50, 100)
  197. p = math.random(8, 14)
  198. -- p = math.random(20, 26)
  199. rolls = 0
  200. end
  201. if(num == 0) then
  202. num = math.random(50, 100)
  203. p = math.random(8, 14)
  204. rolls = 0
  205. end
  206. last = rolls
  207. countloss += 1
  208. seguidas += 1
  209. if(nextbet > 0) then
  210. nextbet = 0.00000000
  211. end
  212. if recuperar > 0 then
  213. if seguidas > max_seguidas then
  214. nextbet = base_betting * math.pow(10, seguidas - max_seguidas)
  215.  
  216. --if seguidas == 2 then
  217. -- nextbet = base_betting * 10
  218. --else
  219. -- if seguidas == 3 then
  220. -- nextbet = base_betting * 10
  221. -- else
  222. -- if seguidas == 4 then
  223. -- nextbet = base_betting * 100
  224. -- else
  225. -- if seguidas == 5 then
  226. -- nextbet = base_betting * 1000
  227. -- else
  228. -- if seguidas == 6 then
  229. -- nextbet = base_betting * 10000
  230. -- end
  231. -- end
  232. -- end
  233. -- end
  234. --end
  235.  
  236. num = 0
  237. p = 0
  238. end
  239. end
  240. end
  241.  
  242. if(num > 0 and rolls > num and last + p < rolls) then
  243. nextbet = betting
  244. end
  245.  
  246. if(countloss >= 4) then
  247. rolls += 1
  248. end
  249.  
  250. print("Num: ".. num)
  251. print("Roll: "..rolls)
  252. print(string.format("Recuperar: "..recuperar))
  253. print(string.format("T: "..t))
  254. end
  255. retirar()
  256. sinparar()
  257. print(string.format("GananciasTIP: %.8f", ganancias))
  258. end
  259.  
  260.  
  261. function retirar()
  262. temporal = balance - balanceinicio
  263. if (retirar == true) then
  264. print(string.format("GananciasTIP: %.8f", temporal))
  265. if (balance-balanceinicio > cadacuantoretirar) then
  266. print('-------------------')
  267. tip(mibanco,saldoretirar)
  268. ching()
  269. print('-------------------')
  270. balanceinicio = balance - saldoretirar
  271. end
  272. end
  273. end
  274.  
  275. function hacertip()
  276. tip(mibanco,saldoretirar)
  277. balanceinicio = balance - saldoretirar
  278. end
  279.  
  280. function sinparar()
  281. if (nostop) then
  282. if (balance < (balance - nextbet)) then
  283. nextbet = prebet
  284. betcount = 0
  285. wins = 0
  286. loss = 0
  287. resetstats()
  288. resetseed()
  289. evencount = 0
  290. end
  291. end
  292. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement