Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --https://bit-exo.com/?ref=pierresert1
- --https://www.bitsler.com/?ref=pierresert1
- --https://bitvest.io?r=100548
- --https://www.bitdice.me/?r=29766
- enablezz=false
- enablesrc=false
- perte=0
- div = 100000000
- --balance = 10000
- --SETTING--------------
- casino = 1
- minchance = 11
- maxchance = 98 -- maxchance autorisé par le site
- percBL = 1000 -- basebet = balance divisé par cette valeur
- percREC = 11 -- chance callculé pour recover ce % avec la bb
- target = balance*2 --stop si balance >
- limite = 0 --stop si balance <
- -----------------------
- bb = (balance-limite) / percBL
- agressivite = 1
- bbDB = bb
- function target_et_limite()
- if (balance-nextbet) < limite then
- alarm()
- print("MISSION FAILLED! C'EST LE JEU SVP FAITES PAS DE BÊTISE") stop()
- end
- if balance >= target then
- ching()
- print("TARGET REACHED GG !!!") stop()
- end
- end
- function calcul_increase()
- payout=(100 - casino)/chance
- q=((1+(1/(payout-1)))-1)*(1+(agressivite/100))+1
- inc=(q-1)*100
- end
- MRTGLLOPT=false
- function martingale_DB() --optimizing the base bet to use 100% of the balance
- n=math.log((balance/bb)*(-1+q)+1)/math.log(q)
- n=math.floor(n)
- if (lastBet.profit >= 0) then
- nextbet=bbDB
- else
- nextbet=previousbet*q
- end
- print("========================================================")
- print(" ")
- print("INCREASE= " ..inc .."%")
- print("SERIE MAX DE LOSE POSSIBLE= " ..n-1 )
- print(" ")
- print("========================================================")
- end
- function simu_printInfo()
- print("wagered= " ..wagered)
- print("profit= " ..profit)
- print("PERF= " ..(wagered/profit)*100 .."%")
- print ("chance= " ..chance)
- print("nextbet= " ..nextbet .." N° " ..bets)
- end
- bestID,badID,pirePERTE,bestPROFIT,negatifMAX,perte_bestBETid=0,0,0,0,0,0,0
- perteMEMORY = 0
- function bestBETid()
- perte_bestBETid += currentprofit
- if perte_bestBETid > 0 then
- perte_bestBETid = 0
- else
- perteMEMORY = perte_bestBETid
- end
- --[[note la perte max + le pari gagnant suivant, si le win a permis de rattraper toute les pertes.
- -- Sinon note seulement la perte max ]]--
- if (perteMEMORY-previousbet) < (negatifMAX) and (win) then
- negatifMAX = perteMEMORY-previousbet
- end
- if perte_bestBETid < negatifMAX then
- negatifMAX = perte_bestBETid
- end
- -----------------------------------------------
- if currentprofit >= bestPROFIT then
- bestID=lastBet.id
- bestPROFIT=currentprofit
- end
- if currentprofit <= pirePERTE then
- badID=lastBet.id
- pirePERTE=currentprofit
- end
- Pmisen_jeu = ("MONTANT MAXIMUM DE LA BALANCE MISE EN JEU = " ..string.format("%.8f",negatifMAX) .." " ..string.upper(currency))
- Pprofit_max = ("PROFIT BET MAX ID= " ..bestID .." MONTANT= " ..string.format("%.8f",bestPROFIT) .." " ..string.upper(currency) )
- Pperte_max = ("PERTE BET MAX ID= " ..badID .." MONTANT= " ..string.format("%.8f",pirePERTE) .." " ..string.upper(currency) )
- end
- function printInfo()
- print(" ")
- print("========================================================")
- print(PlimiteTS)
- print(Pmisen_jeu)
- print(Pprofit_max)
- print(Pperte_max)
- print("========================================================")
- print(" ")
- end
- --function tip_perc settings---
- profit_tip = 0
- HZ_tip = 10 --fréquence de tip = montant du profit avant de tips
- min_tip = 0.00000001 --minimum autoris&é par le site
- perc_tip = 50 --%
- user_tip = "funbank"
- profit = 0
- ------------------------------
- function tip_perc()
- profit_tip += currentprofit
- if ( profit_tip >= min_tip*(perc_tip/100) ) and ( profit_tip >= HZ_tip ) and ( profit > 0 ) then
- tip(user_tip, profit_tip*(perc_tip/100))
- print("TIP DE " ..string.format("%.8f",profit_tip*(perc_tip/100)) .." " ..currency .." A " ..user_tip)
- profit_tip = 0
- end
- end
- chance = maxchance
- nextbet = bb
- function dobet()
- bethigh = math.random(0,100)%2==0
- perte += currentprofit
- if perte >= 0 then
- --perte /=2.5
- perte = 0
- bbDB = (balance-limite) / percBL
- bb = bbDB
- end
- if win then
- nextbet = bb
- else
- nextbet = previousbet*1.1
- end
- chance=(100-casino)/(((-perte*(percREC/100))/bb)+1)
- if chance > maxchance then
- chance = maxchance
- end
- if chance <= minchance then
- chance = maxchance
- bb *=2.7
- nextbet = bb
- --calcul_increase()
- --martingale_DB()
- end
- --tip_perc()
- bestBETid()
- target_et_limite()
- --simu_printInfo()
- printInfo()
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement