Advertisement
Guest User

PasteToBin (Wed Jun 13 2018)

a guest
Jun 13th, 2018
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
4CS 5.56 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             = true                                      -- 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             = 'cc958db0-db63-4bae-b9b3-fadc399b8ca5'    -- Banco PrimeDice
  12.     --mibanco           = '5cceb8e4-ab68-4e93-8c0f-b2f49c9aeb04'    -- Banco Stake  
  13.     temporal            = 0                                         -- No tocar.
  14.     balanceinicio       = balance                                   -- Calcula Profit, no cambiar.
  15.    
  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=49.5
  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.  
  44.  
  45. function dobet()
  46.     if (betcount < preroll) then
  47.         betcount = betcount+ 1
  48.         nextbet = prebet
  49.        
  50.         if (win) then
  51.             wins = wins + 1
  52.         else
  53.             loss = loss + 1  
  54.         end                                      
  55.     end    
  56.    
  57.     if ((betcount == preroll) or (betcount > preroll)) then
  58.         if (betcount == preroll) then
  59.             wins = preroll - loss
  60.             betcount = betcount + 1
  61.             count = wins - loss
  62.                
  63.             if ((count == 0) or (count == -10) or (count == 10))  then
  64.                 nextbet = prebet
  65.                 evencount = 1
  66.                 print("Resetting")
  67.             else
  68.                 if ((count == -12) or (count == -8) or (count == -6) or (count == -2)  or (count == 4 ) or (count == 8 ) or (count == 14 )) then
  69.                     if losscount==0 then
  70.                         newbase = (balancetrucado/(2^riesgo))
  71.                         nextbet = newbase
  72.                     else
  73.                         nextbet = newbase * (2^losscount)
  74.                         bethigh = true
  75.                     end
  76.                    
  77.                 else
  78.                     if (losscount == 0) then
  79.                         nextbet = newbase
  80.                     else
  81.                         nextbet = newbase * (2^losscount)
  82.                         bethigh = false
  83.                     end
  84.                 end
  85.             end
  86.         else
  87.             if (evencount == 1) then
  88.                 print("maxwincount: ".. maxwincount)
  89.                 print("maxlosscount: ".. maxlosscount)
  90.                 print (string.format("New Base: %.8f", newbase))
  91.                 bethigh = true
  92.                 nextbet = prebet
  93.                 betcount = 0
  94.                 wins = 0
  95.                 loss = 0
  96.                 resetstats()
  97.                 resetseed()
  98.                 evencount = 0
  99.            
  100.             else
  101.                 if (win) then      
  102.                     wincount += 1
  103.                    
  104.                     if (wincount > maxwincount) then
  105.                         maxwincount = wincount
  106.                     end
  107.                    
  108.                     losscount = 0
  109.                     print("maxwincount: ".. maxwincount)
  110.                     print("maxlosscount: ".. maxlosscount)
  111.                     print (string.format("New Base: %.8f", newbase))
  112.                     bethigh = true
  113.                     nextbet = prebet
  114.                     betcount = 0
  115.                     wins = 0
  116.                     loss = 0
  117.                     resetstats()
  118.                     resetseed()
  119.                 else
  120.                     losscount += 1
  121.                
  122.                     if (losscount > maxlosscount) then
  123.                         maxlosscount = losscount
  124.                     end
  125.                    
  126.                     wincount = 0
  127.                     print("maxwincount: ".. maxwincount)
  128.                     print("maxlosscount: ".. maxlosscount)
  129.                     print (string.format("New Base: %.8f", newbase))
  130.                     bethigh = true
  131.                     nextbet = prebet
  132.                     betcount = 0
  133.                     wins = 0
  134.                     loss = 0
  135.                     resetstats()
  136.                     resetseed()
  137.                  end
  138.             end
  139.         end
  140.     end
  141.     retirar()
  142.     sinparar()
  143. end
  144.  
  145.  
  146. function retirar()
  147.     if (retirar) then
  148.         temporal = balance - balanceinicio
  149.         print(string.format("GananciasTIP: %.8f", temporal))
  150.        
  151.         if (balance-balanceinicio > cadacuantoretirar) then
  152.             print('-------------------')
  153.             tip(mibanco,saldoretirar)
  154.             ching()
  155.             print('-------------------')
  156.             balanceinicio = balance - saldoretirar
  157.         end
  158.     end
  159. end
  160.  
  161. function hacertip()
  162.     tip(mibanco,saldoretirar)
  163.     balanceinicio = balance - saldoretirar
  164. end
  165.  
  166. function sinparar()
  167.     if (nostop) then
  168.         if (balance < (balance - nextbet)) then
  169.             nextbet = prebet
  170.             betcount = 0
  171.             wins = 0
  172.             loss = 0
  173.             resetstats()
  174.             resetseed()
  175.             evencount = 0
  176.         end
  177.     end
  178. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement