Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --[[
- 1) Joue une chance aléatoire compris entre une valeur maximal et minimal
- 2) Détermine le payout moyen en fonction de la chance maximal et minimal
- 3) Le montant du pari est calculé en fonction de la perte et du payout moyen
- ]]
- --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 --satoshi
- --balance=10000 --simulation
- --SETTING--------------
- casino=1 --% edge house
- bb=15/div --base bet
- target=balance*2 --STOP_IF_BALANCE_OVER target
- limite=0 --STOP_IF_BALANCE_UNDER limite
- minChance=0.1 --chance minimum
- maxChance=98 --chance maximum
- -----------------------
- payout = ((100-casino)*math.log(maxChance)-(100-casino)*math.log(minChance))/(maxChance-minChance)
- 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()
- 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
- 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
- chance=math.random(minChance*1000,maxChance*1000)/1000
- bethigh=math.random(0,100)%2==0
- nextbet=bb
- function dobet()
- chance=math.random(minChance*1000,maxChance*1000)/1000
- bethigh=math.random(0,100)%2==0
- stringA()
- perte += currentprofit
- if perte < 0 then
- nextbet=(-perte+bb)/(payout-1)
- if nextbet < bb then nextbet =bb end
- else
- perte=0
- nextbet=bb
- end
- print("PAYOUT= " ..payout)
- bestBETid()
- target_et_limite()
- --simu_printInfo() --simulation
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement