The Eagle V5 XMAS Version
The Eagle V5 XMAS Version
The Eagle V5 XMAS Version
2) Locate the rare series (example: 4 rolls above 90 in a row) you can set
what type of series (the probability of series) you are looking for with the
variable NBM (example
NBM = 1000 is looking for series with at least 1 chance out of 1000 to arrive)
3) Following the series in the same direction and with the corresponding luck
(e.g.: - 2).
ple after 4 rolls higher than 90 it follows in chance 90 and under)
]]
enablezz = false
enablesrc = true
bestTOUMX = 0 --Memorizes the probability of the best chance
n = 0
N = 0
n = 1
bestchain = 0 --memorizes the value of the most rare series
indice = 1 --index of the rarest series at the last control
pr = 0 --memorizes profit/progression
prinitiale = pr
--balance=10000 --simulation
A = minchance-((maxchance-minchance)/(NBRchance-1))
for x=1,NBRchance,1 do --Remplis les table selectione les chances
A +=(maxchance-minchance)/(NBRchance-1)
Tch[x] = A --chance
Tover[x]=0 --chaine lose over
Tunder[x]=0 --chaine lose under
TOUMX[x]=0 --plus grande chaine entre over/under
Tn[x]=0 --chaine lose min
Tsens[x]=0 --mémorise sens de chaque chaine
end
x=0
--___________________________________________________________________
--FONCTION_______________________________________________________________
function calcul_increase()
payout=(100 - casino)/chance
q=((1+(1/(payout-1)))-1)*(1+(agressivite/100))+1
inc=(q-1)*100
end
MRTGLLOPT=false
function martingale_optimise() --optimizing the base bet to use 100% of the balance
end
function reset_to_preroll()
end
function cherche_serie_de_win()
for x=1,NBRchance,1 do
function cherche_serie_de_lose()
for x=1,NBRchance,1 do
function selection_indice_de_la_best_serie_win()
for x=1,NBRchance,1 do
function selection_indice_de_la_best_serie_lose()
for x=1,NBRchance,1 do
function limiteSTOP(target,limite)
if balance > target then
simuInfo()
print("TARGET REACHED !!!!!!!!!!!!!!")
stop()
elseif balance-nextbet < limite then
simuInfo()
print(".............................")
stop()
end
end
bbDB = bb
startbank = balance
function simuInfo()
print("#=========================================#")
print(" #---===--- The Eagle Flies! ---===---#
")
print("#=========================================#")
print("# [Bank de départ = " ..string.format("%9.8f", startbank) .. " ]-")
print("# [Bet de base = " ..string.format("%9.8f", bbDB) .. " ]-")
print("#=========================================#")
print("# [Chance: " ..string.format("%9.8f", chance) .. " ]-")
print("# [nextbet: " ..string.format("%9.8f", nextbet) .." ROLL n°
" ..bets .." ]-")
print("#---------------------------------------------------------------------------
-------#")
print("# [profit: " ..string.format("%9.8f", profit) .." (balance
x" ..string.format("%2.2f",((balance)/(startbank))) ..") ]-")
print("# [Max mis en jeu: " ..string.format("%9.8f", maxUse) .. " ]-")
print("# [wagered: " ..string.format("%9.8f", wagered) .."
(" ..string.format("%2.2f",wagered/(startbank)) .." x start balance) ]-")
print("# [Avg profit/bet: " ..string.format("%9.8f", profit/bets/bbDB) .." x
base bet ]-")
print("# [Avg wag/bet: " ..string.format("%9.8f", wagered/bets) .." ]-")
print("# [PROFIT MAX= " ..bestID .." ]-")
print("# [PERTE MAX= " ..badID .." ]-")
print("#=========================================#\n\n\n")
end
perteP = 0
p = false
maxUse = 0
bestID,badID,pirePERTE,bestPROFIT=0,0,0,0
function calculPrint()
if p == true then
--print(balance)
print(chance)
print(nextbet)
print(coef)
end
perteP +=currentprofit
if perteP >= 0 then perteP = 0 end
if bets%frequence_affichage==0 then
simuInfo()
end
chance=chancePRLL
nextbet=bbPRLL
debugg = false
function dobet()
print("================================")
print("=[Amount" .." ][ " .."sens" .." ][ " .."Chance" .." ]
[ " .."gain]=")
print("=[" ..string.format("%9.2f",previousbet) .." ][ " ..sens24 .." ][
"..string.format("%1.2f",chance).." ][ "..gain24 .." ]=")
print("================================")
end
pr +=currentprofit
cherche_serie_de_lose()
--cherche_serie_de_win()
bestchain=0
selection_indice_de_la_best_serie_lose()
--selection_indice_de_la_best_serie_win()
reset_to_preroll()
if MRTGLLOPT==true then
calcul_increase()
martingale_optimise()
end
calculPrint()
limiteSTOP(target,limite)
--simu_printInfo()
--chance = math.floor((chance*100)+0.5)/100 -- wolf bet
end