Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --[[
- 1) Joue un montant moyen aléatoire une chance aléatoire avec un sens aléatoire
- 2) après un nombre de roll moyen (var = boum) aléatoire si on est en perte le
- pari moyen est augmenté de façon +ou- aléatoire (previousbet multiplié par par l'intervalle qmax qmin)
- 3) Si en profit on revient à la base bet
- ]]
- --https://bit-exo.com/?ref=pierresert1
- --https://www.bitsler.com/?ref=pierresert1
- --https://bitvest.io?r=100548
- --de base
- enablezz=false
- enablesrc=false
- perte,profitmax=0,0
- --balance=50000
- --------SETTING DE BASE---
- div=100000000 --unité de base
- bb=10/div --basebet
- target=balance*2 --stop si balance >= target
- limite=0 --stop si balance <= limite
- --------------------------
- --------SETTING AVANCE----
- minchance=0.01
- maxchance=98
- boum=77
- qmax=3 --multiplieur max
- qmin=2 --multiplieur min
- --------------------------
- nextbet=bb
- chance=math.random(minchance*10000,maxchance*10000)/10000
- bethigh=math.random(0,100)%2==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 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 ("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()
- stringA()
- perte+= currentprofit
- --calcul de nextbet----------------------
- if perte > 0 then
- perte,nextbet=0,bb
- end
- if math.random(1,boum)==1 then
- print("O---------------------------O BOOOOOOOOOOOOUM !!! O---------------------------O")
- nextbet=previousbet*math.random(qmin*10000,qmax*10000)/10000
- --nextbet=previousbet+bb
- end
- --minimum bet=bb
- if nextbet < bb then
- nextbet=bb
- end
- ------------------------------------------
- --direction/chance au hazard------------------------------
- chance=math.random(minchance*10000,maxchance*10000)/10000
- bethigh=math.random(0,100)%2==0
- ----------------------------------------------------------
- --simu_printInfo()
- bestBETid()
- target_et_limite()
- end --fin dobet
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement