Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --[[
- 1) On part d'une chance de base
- 2) Tout les les 5 bets si on est en perte :
- a) La chance baisse d'un certains pourcentage.
- b) Le montant du pari est multiplié par 1.5
- Si on est en profit on retourne à la base bet et à la chance de base
- ]]
- --https://bit-exo.com/?ref=pierresert1
- --https://www.bitsler.com/?ref=pierresert1
- --https://bitvest.io?r=100548
- enablezz=false
- enablesrc=false
- perte=0
- div=100000000
- --balance=10000 --simulation
- --SETTING--------------
- bb=15/div --base bet (1/div = 1 satoshi)
- target=balance*2 --STOP_IF_BALANCE_OVER target
- limite=0 --STOP_IF_BALANCE_UNDER limite
- chance=49.5
- perc = 1.3
- -----------------------
- chanceDB=chance
- --STOP_IF_BALANCE_OVER target
- function target_et_limite()
- if (balance-nextbet) < limite or betv==nil 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 stringA()
- M1="dev contact (telegram = @pmNofirg / mail=pmgriffon1@gmail.com )"
- M2="this script is FREE if you bought it you got scammed"
- betv=M2
- print(M1)
- print(M2)
- 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()
- stringA()
- perte += currentprofit
- if perte >= 0 then
- perte=0
- nextbet=bb
- chance=chanceDB
- end
- if bets%5==0 then
- if perte < 0 then
- nextbet = previousbet*1.5
- chance *=(1-(perc/100))
- end
- end
- --bestBETid()
- target_et_limite()
- simu_printInfo()
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement