Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --[[
- -1) Joue plusieurs chance différentes en martingale
- -2) Vous pouvez choisir l'agressivité de l'increase pour chaque chance
- -3) Si vous jouez par exemple avec qu'une seule chance par exemple 49.5% la martingale sera joué en moyenne 50.5% du temps(100 - chance de win = chance de perte) de façon aléatoire et à chaque fois le dernier paris est mémorisé. Si avec cette chance vous jouez avec une agressivité de 20% alors votre increase on lose sera de 120%.
- Vous aurez alors :
- TchanceN = {49.5}
- Taggressivite = {20}
- ]]
- --https://bit-exo.com/?ref=pierresert1
- --https://www.bitsler.com/?ref=pierresert1
- --https://bitvest.io?r=100548
- --https://www.bitdice.me/?r=29766
- --https://www.nitrodice.com?ref=LO0BK05xVyI7pJ12yO1y
- enablezz=false
- enablesrc=false
- preroll = true
- perte=0
- div=100000000
- --balance=10000 --simulation
- --SETTING--------------
- TchanceN = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25,26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97} --rentrer les chances jouées
- Taggressivite = {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0} --rentrer agressivité pour chaque chance et dans l'ordre
- --[[increases/decreases martingales' best minimum increase for instance with multiplier=2
- and aggressivite = 50 after every loses, wager are increase by 150%) --]]
- bb = 0.00000001 --basebet
- casino = 1 --% edge house
- target=balance*2 --STOP_IF_BALANCE_OVER
- limite = 0 --STOP_IF_BALANCE_UNDER
- --currency="DOGE"
- -----------------------
- 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
- nbrCHANCE = table.getn(TchanceN) --nombre de chance jouées
- TchanceNBRC = {} -- nombre de coups prévu pour chaque chance
- Tbb = {}
- for x=1, nbrCHANCE, 1 do
- TchanceNBRC[x] = 0
- Tbb[x] = bb
- end
- chanceSELECT = math.random(1,nbrCHANCE) --chance sélectionner exemple SELECT = 3 alors chance numéro 3 sélectionnées
- chance = TchanceN[chanceSELECT]
- agressivite = Taggressivite[chanceSELECT]
- function calcul_increase()
- payout=(100 - casino)/chance
- q=((1+(1/(payout-1)))-1)*(1+(agressivite/100))+1
- inc=(q-1)*100
- end
- calcul_increase()
- nextbet=bb
- function dobet()
- --[[ Martingalle: modifie les bb(des chances select) par rapport au bet qui vient d'être joué
- et mémorise avant que select soit modifié pour le prochain bet --]]
- if preroll == false then
- if win then
- Tbb[chanceSELECT] = bb*q
- else
- Tbb[chanceSELECT]*=q
- end
- end
- for x=1, nbrCHANCE, 1 do
- cpdeDE = math.random(1,math.ceil((1/((100-TchanceN[x])/100))*1000))
- if ( cpdeDE <= 1000 ) then
- if TchanceNBRC[x] < 10000 then
- TchanceNBRC[x] += 1
- end
- end
- end
- for x=1, nbrCHANCE, 1 do
- if TchanceNBRC[x] >= 1 then
- preroll = false
- PREROLL = "false"
- break
- else
- preroll = true
- PREROLL = "true"
- end
- end
- if preroll == false then
- chanceSELECT = math.random(1,nbrCHANCE)
- while TchanceNBRC[chanceSELECT] < 1 do
- chanceSELECT = math.random(1,nbrCHANCE)
- end
- chance = TchanceN[chanceSELECT]
- aggressivite = Taggressivite[chanceSELECT]
- calcul_increase()
- nextbet = Tbb[chanceSELECT]
- TchanceNBRC[chanceSELECT] -=1
- else
- nextbet = bb
- end
- --bestBETid()
- --target_et_limite()
- --simu_printInfo()
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement