Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --[[
- -1)C'est une d'alembert
- -2)Une incrémentation en cas de lose / win
- -3) Un reset to base if profit (var=profit_target)
- A vous de choisir vos incrementation votre chance et vostre reset if profit enjoy !
- ]]
- --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 --simu
- --SETTING--------------
- chance = 49.5
- bb = 1/div -- base bet 1/div = 1 satoshi
- addW = -bb -- incrémente en cas de win
- addL = bb --incremente en cas de lose
- profit_target = bb -- choisir le profit visé pour retourner à la base bet
- target=balance*2 -- stop si la balance est supérieure à target
- limite=0 --stop si la balance est inférieure à la limite
- -----------------------
- 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
- if perte > profit_target then
- perte = 0
- nextbet = bb
- end
- if win then
- nextbet += addW
- else
- nextbet += addL
- end
- if nextbet <= bb then nextbet = bb end
- bestBETid()
- target_et_limite()
- --simu_printInfo()
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement