Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --[[
- 1) Augmente le pari en cas de win si en profit alors revenir à la base bet
- 2) En cas de lose le pari reste le même
- Choisis bien ta base bet ta chance ton multiplicateur(qPW) ta target et ta
- limite. Good luck !!
- ]]
- --https://bit-exo.com/?ref=pierresert1
- --https://www.bitsler.com/?ref=pierresert1
- --https://bitvest.io?r=100548
- enablesrc=false
- enablezz=false
- div=100000000 --satoshi
- --balance=10000 --simulation
- --SETTINGS_______________
- chance=19.5
- qPW=1.5 --multiplier
- bb=13/div --basebet
- target=balance*2 --STOP_IF_BALANCE_OVER target
- limite=0 --STOP_IF_BALANCE_UNDER limite
- --_______________________
- nextbet=bb
- pr=0
- --prinitiale=0
- 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 increase_postwin()
- if pr < 0 then
- if chance < 70 then
- if win then
- nextbet = previousbet*qPW
- end
- else
- if !win then
- nextbet = previousbet*qPW
- end
- end
- else
- pr=0
- nextbet=bb
- end
- end
- 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 simu_printInfo() --simulation
- print("wagered= " ..wagered)
- print ("chance= " ..chance)
- print("profit= " ..profit)
- 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
- function dobet()
- --chance=math.random(1,20)
- stringA()
- pr+=currentprofit
- increase_postwin()
- target_et_limite()
- --simu_printInfo()
- bestBETid()
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement