Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --[[
- -Joue des sequences de rolls avec une augmentation du pari si perte et diminution si gain
- (increase/decrease choisis très safe et pas forcément rentable).
- - Si la séquence est terminé en perte alors augmentation du pari sinon diminuer le pari
- - Si profit supérieure ou égale à 0 alors retour à la base bet
- -Le principe c'est une strat avec deux combinaisons de "inc dec" un très safe à l'intérieure
- de la série et un autre qui prends la série comme un pari unique
- ]]
- --https://bit-exo.com/?ref=pierresert1
- --https://www.bitsler.com/?ref=pierresert1
- --https://bitvest.io?r=100548
- enablezz=false
- enablesrc=false
- ctROLL = 0
- bets=0
- perte=0
- perteCM=0
- div=100000000
- --balance=10000 --simulation
- --SETTING--------------
- chance=89 --chance
- rollNBR=5 --nombre de roll par série
- bb=10/div --basebet
- target=balance*2
- limite=0
- -----------------------
- bbDB = bb --basebet de base
- function inc_dec(inc,dec) --inc,dec en %
- if win then
- nextbet = previousbet*(1+(dec/100))
- else
- nextbet = previousbet*(1+(inc/100))
- end
- end
- function BB_INC_DEC(inc,dec) --inc,dec en %
- if perte < perteCM then
- bb *= (1+(inc/100))
- else
- bb *= (1+(dec/100))
- end
- perteCM = perte
- end
- function target_et_limite()
- if (balance-nextbet) < limite 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
- nextbet=bb
- function dobet()
- perte += currentprofit
- ctROLL += 1
- print("N°" ..ctROLL)
- if ctROLL == rollNBR then
- ctROLL = 0
- BB_INC_DEC(50,-25) --en % (inc,dec)
- nextbet = bb
- else
- inc_dec(30,-3.2) --en % (inc,dec)
- end
- if nextbet < bbDB then nextbet=bbDB end
- if perte > 0 then
- ctROLL = 0
- bb = bbDB
- nextbet = bb
- perte = 0
- bethigh = math.random(0,100)%2==0
- perteCM = 0 --à voir plus safe avec
- end
- bestBETid()
- target_et_limite()
- --simu_printInfo() --simulation
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement