Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --[[
- -1) NDC correspond au nombre moyen de wins pour une lose en fonction de la chance
- -2) En moyenne tout les "NDC" paris le sens est sélectionné aléatoirement.
- -3) Si on est en perte après "NDC" alors montant du pari = la perte/2 et le payout est multiplié par 1.5(la chance diminue)
- -4) Si on est en profit "NDC" = lors montant du pari = la base bet et chance = chance de base
- ]]
- --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 --simulation
- --SETTING--------------
- casino = 1 --edge house %
- chance = 98
- chanceMin = 44 -- minimum chance
- bb = 155/div -- base bet (1/div = 1 satoshi)
- target = balance*2 --STOP_IF_BALANCE_OVER target
- limite = 0 --STOP_IF_BALANCE_UNDER limite
- -----------------------
- ndc = math.floor(1/((100-chance)/100))
- chanceDB = chance --chance de base
- payout = (100-casino)/chance
- 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 math.random(1,ndc)==ndc then
- print("-----------BOUUUUUMMMMMM!!!!!!!!!!!!!!-----------")
- bethigh = math.random(0,100)%2==0
- if chance == chanceMin then chance = chanceDB end
- nextbet = -perte/2
- payout = (100-casino)/chance
- payout = ((payout-1)*1.5)+1
- chance = (100-casino)/payout
- if chance < chanceMin then chance = chanceMin end
- bethigh=math.random(0,100)
- ndc = math.floor(1/((100-chance)/100))
- if ndc < 2 then ndc=2 end
- end
- if perte >= 0 then
- perte *= 0.9
- nextbet = bb
- chance = chanceDB
- bethigh=math.random(0,100)
- ndc = math.floor(1/((100-chance)/100))
- end
- if nextbet < bb then
- nextbet = bb
- end
- bestBETid()
- target_et_limite()
- --simu_printInfo() --simulation
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement