Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --[[
- -Labouchère simplifié
- -https://fr.wikipedia.org/wiki/Martingale#La_Labouchère
- ]]
- --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--------------
- chance = 49.5
- bb = 1/div
- target_profit = bb
- target = balance*2
- limite = 0
- -----------------------
- bbDB=bb
- function target_et_limite()
- if (balance-nextbet) < limite then
- print("MISSION FAILLED! C'EST LE JEU SVP FAITES PAS DE BÊTISE") stop()
- end
- if balance >= target then
- print("TARGET REACHED GG !!!") stop()
- end
- 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=0,0,0,0
- function bestBETid()
- if currentprofit >= bestPROFIT then
- bestID=lastBet.id
- bestPROFIT=currentprofit
- end
- if currentprofit <= pirePERTE then
- badID=lastBet.id
- pirePERTE=currentprofit
- end
- print("PROFIT MAX= " ..bestID)
- print("PERTE MAX= " ..badID)
- end
- nextbet=bb
- function dobet()
- perte += currentprofit
- nextbet = previousbet+bb
- if win then
- bb += bbDB
- end
- if perte >= target_profit then
- bb = bbDB
- nextbet = bb
- perte = 0
- end
- --bestBETid()
- target_et_limite()
- simu_printInfo()
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement