(PC) TOPIC UFFICIALE PES 2020

giogi

Primavera
14 Settembre 2019
2,192
1,210
113
Funzotik ha fixato anche il substitution board per l'europa league personalizzata!
Sta facendo davvero un gran lavorone. :D:p


PES2020_2020_04_03_19_58_10_186.jpg

Ciao, sul sito evoweb non vedo l'aggiornamento pero', dove si trova? Io ho le sue entrance 1.0

Grazie
 

avengedsevenfold84

Prima squadra
19 Novembre 2017
4,131
3,096
113
PSN ID
scarface84cik
salve quando seleziono lo Stamford Bridge mi esce la vista aerial stadio esterna del Bernabeu
ho aperto il modulo tunnel ma non son dove sia il problema

-- módulo de túnel y cinematicas para PES 2020 : Jostike Games
-- solo sider 6.1 en adelante



local fileroot = ".\\content\\tunnel"

local function make_key(ctx, filename)
if ctx.stadium == 21 then
if ctx.timeofday == 0 then
tunnel = "Stadium\\Anfield Ex"
else
tunnel = "Stadium\\Anfield"
end
elseif ctx.stadium == 61 then
if ctx.timeofday == 0 then
tunnel = "Stadium\\Santiago_de_chile Ex"
else
tunnel = "Stadium\\Santiago_de_chile"
end
elseif ctx.stadium == 51 then
if ctx.timeofday == 0 then
tunnel = "Stadium\\Signal Iduna Park Ex"
else
tunnel = "Stadium\\Signal Iduna Park"
end
elseif ctx.stadium == 63 then
if ctx.timeofday == 0 then
tunnel = "Stadium\\Veltis Arena Ex"
end
elseif ctx.stadium == 24 then
if ctx.timeofday == 0 then
tunnel = "Stadium\\Maracana Ex"
end
elseif ctx.stadium == 7 then
if ctx.timeofday == 0 then
tunnel = "Stadium\\Old Trafford Ex"
end
elseif ctx.stadium == 19 then
if ctx.timeofday == 0 then
tunnel = "Stadium\\libertadores_De_america"
else
tunnel = "Stadium\\libertadores_De_america"
end
elseif ctx.stadium == 82 then
if ctx.timeofday == 0 then
tunnel = "Stadium\\Etihad Ex"
else
tunnel = "Stadium\\Etihad"
end
elseif ctx.stadium == 22 then
if ctx.timeofday == 0 then
tunnel = "Stadium\\Juventus Ex"
end
elseif ctx.stadium == 11 then
if ctx.timeofday == 0 then
tunnel = "Stadium\\Allianz arena Ex"
end
elseif ctx.stadium == 04 then
if ctx.timeofday == 0 then
tunnel = "Stadium\\Santiago Bernabeu Ex"
else
tunnel = "Stadium\\Santiago Bernabeu"
end
elseif ctx.stadium == 27 then
if ctx.timeofday == 0 then
tunnel = "Stadium\\Monumental Ex"
else
tunnel = "Stadium\\Monumental Ex"
end
elseif ctx.stadium == 28 then
if ctx.timeofday == 0 then
tunnel = "Stadium\\Bombonera Ex"
end
elseif ctx.stadium == 1 then
if ctx.timeofday == 0 then
tunnel = "Stadium\\Giuseppe Meazza Ex"
else
tunnel = "Stadium\\Giuseppe Meazza"
end
elseif ctx.stadium == 52 then
if ctx.timeofday == 0 then
tunnel = "Stadium\\Emirates Ex"
end
else
tunnel = nil
end
if tunnel ~= nil then
return string.format("%s:%s", tunnel, filename)
end
end

local function get_filepath(ctx, filename, key)
if key and tunnel ~= nil then
return string.format("%s\\%s\\%s", fileroot, tunnel, filename)
end
end

function make_log(ctx)
if tunnel ~= ni then
logResult = tunnel
logResult = string.gsub(logResult, "Stadium\\", "")
log("-------- " .. logResult)
end
end

local function init(ctx)
if fileroot:sub(1,1)=='.' then
fileroot = ctx.sider_dir .. fileroot
end
ctx.register("trophy_rewrite", make_log)
ctx.register("livecpk_make_key", make_key)
ctx.register("livecpk_get_filepath", get_filepath)
end

return { init = init }
 

salvoyamaha8017

Esordienti
20 Gennaio 2019
101
28
28
salve quando seleziono lo Stamford Bridge mi esce la vista aerial stadio esterna del Bernabeu
ho aperto il modulo tunnel ma non son dove sia il problema

-- módulo de túnel y cinematicas para PES 2020 : Jostike Games
-- solo sider 6.1 en adelante



local fileroot = ".\\content\\tunnel"

local function make_key(ctx, filename)
if ctx.stadium == 21 then
if ctx.timeofday == 0 then
tunnel = "Stadium\\Anfield Ex"
else
tunnel = "Stadium\\Anfield"
end
elseif ctx.stadium == 61 then
if ctx.timeofday == 0 then
tunnel = "Stadium\\Santiago_de_chile Ex"
else
tunnel = "Stadium\\Santiago_de_chile"
end
elseif ctx.stadium == 51 then
if ctx.timeofday == 0 then
tunnel = "Stadium\\Signal Iduna Park Ex"
else
tunnel = "Stadium\\Signal Iduna Park"
end
elseif ctx.stadium == 63 then
if ctx.timeofday == 0 then
tunnel = "Stadium\\Veltis Arena Ex"
end
elseif ctx.stadium == 24 then
if ctx.timeofday == 0 then
tunnel = "Stadium\\Maracana Ex"
end
elseif ctx.stadium == 7 then
if ctx.timeofday == 0 then
tunnel = "Stadium\\Old Trafford Ex"
end
elseif ctx.stadium == 19 then
if ctx.timeofday == 0 then
tunnel = "Stadium\\libertadores_De_america"
else
tunnel = "Stadium\\libertadores_De_america"
end
elseif ctx.stadium == 82 then
if ctx.timeofday == 0 then
tunnel = "Stadium\\Etihad Ex"
else
tunnel = "Stadium\\Etihad"
end
elseif ctx.stadium == 22 then
if ctx.timeofday == 0 then
tunnel = "Stadium\\Juventus Ex"
end
elseif ctx.stadium == 11 then
if ctx.timeofday == 0 then
tunnel = "Stadium\\Allianz arena Ex"
end
elseif ctx.stadium == 04 then
if ctx.timeofday == 0 then
tunnel = "Stadium\\Santiago Bernabeu Ex"
else
tunnel = "Stadium\\Santiago Bernabeu"
end
elseif ctx.stadium == 27 then
if ctx.timeofday == 0 then
tunnel = "Stadium\\Monumental Ex"
else
tunnel = "Stadium\\Monumental Ex"
end
elseif ctx.stadium == 28 then
if ctx.timeofday == 0 then
tunnel = "Stadium\\Bombonera Ex"
end
elseif ctx.stadium == 1 then
if ctx.timeofday == 0 then
tunnel = "Stadium\\Giuseppe Meazza Ex"
else
tunnel = "Stadium\\Giuseppe Meazza"
end
elseif ctx.stadium == 52 then
if ctx.timeofday == 0 then
tunnel = "Stadium\\Emirates Ex"
end
else
tunnel = nil
end
if tunnel ~= nil then
return string.format("%s:%s", tunnel, filename)
end
end

local function get_filepath(ctx, filename, key)
if key and tunnel ~= nil then
return string.format("%s\\%s\\%s", fileroot, tunnel, filename)
end
end

function make_log(ctx)
if tunnel ~= ni then
logResult = tunnel
logResult = string.gsub(logResult, "Stadium\\", "")
log("-------- " .. logResult)
end
end

local function init(ctx)
if fileroot:sub(1,1)=='.' then
fileroot = ctx.sider_dir .. fileroot
end
ctx.register("trophy_rewrite", make_log)
ctx.register("livecpk_make_key", make_key)
ctx.register("livecpk_get_filepath", get_filepath)
end

return { init = init }
Ciao ma tu hai le viste aeree di tutti quegli stadi? potresti condividerli? grazie
 

riccf

Esordienti
21 Marzo 2019
130
58
28
PSN ID
cefy89
anche a me succedeva... ho modificato l'id nel file lua e ho installato di nuovo il bernabeu. Davvero inspiegabile come cosa
Ieri ho modificato tutto il file tunnel.lua associando i vari tunnel e arial view...risultato le arial view le vedo in ogni stadio tutte bianche e mi ha sballato diverse cose
 

riccf

Esordienti
21 Marzo 2019
130
58
28
PSN ID
cefy89
scusate ho fatto un pò di casino...nel cambiare i vari file exe, edit ecc ora mi sono accorto che non ho piu le rose aggiornate a gennaio. Come può essere possibile?:(
 

Cloud80

Primavera
21 Settembre 2017
2,039
2,485
113
salve quando seleziono lo Stamford Bridge mi esce la vista aerial stadio esterna del Bernabeu
ho aperto il modulo tunnel ma non son dove sia il problema

-- módulo de túnel y cinematicas para PES 2020 : Jostike Games
-- solo sider 6.1 en adelante



local fileroot = ".\\content\\tunnel"

local function make_key(ctx, filename)
if ctx.stadium == 21 then
if ctx.timeofday == 0 then
tunnel = "Stadium\\Anfield Ex"
else
tunnel = "Stadium\\Anfield"
end
elseif ctx.stadium == 61 then
if ctx.timeofday == 0 then
tunnel = "Stadium\\Santiago_de_chile Ex"
else
tunnel = "Stadium\\Santiago_de_chile"
end
elseif ctx.stadium == 51 then
if ctx.timeofday == 0 then
tunnel = "Stadium\\Signal Iduna Park Ex"
else
tunnel = "Stadium\\Signal Iduna Park"
end
elseif ctx.stadium == 63 then
if ctx.timeofday == 0 then
tunnel = "Stadium\\Veltis Arena Ex"
end
elseif ctx.stadium == 24 then
if ctx.timeofday == 0 then
tunnel = "Stadium\\Maracana Ex"
end
elseif ctx.stadium == 7 then
if ctx.timeofday == 0 then
tunnel = "Stadium\\Old Trafford Ex"
end
elseif ctx.stadium == 19 then
if ctx.timeofday == 0 then
tunnel = "Stadium\\libertadores_De_america"
else
tunnel = "Stadium\\libertadores_De_america"
end
elseif ctx.stadium == 82 then
if ctx.timeofday == 0 then
tunnel = "Stadium\\Etihad Ex"
else
tunnel = "Stadium\\Etihad"
end
elseif ctx.stadium == 22 then
if ctx.timeofday == 0 then
tunnel = "Stadium\\Juventus Ex"
end
elseif ctx.stadium == 11 then
if ctx.timeofday == 0 then
tunnel = "Stadium\\Allianz arena Ex"
end
elseif ctx.stadium == 04 then
if ctx.timeofday == 0 then
tunnel = "Stadium\\Santiago Bernabeu Ex"
else
tunnel = "Stadium\\Santiago Bernabeu"
end
elseif ctx.stadium == 27 then
if ctx.timeofday == 0 then
tunnel = "Stadium\\Monumental Ex"
else
tunnel = "Stadium\\Monumental Ex"
end
elseif ctx.stadium == 28 then
if ctx.timeofday == 0 then
tunnel = "Stadium\\Bombonera Ex"
end
elseif ctx.stadium == 1 then
if ctx.timeofday == 0 then
tunnel = "Stadium\\Giuseppe Meazza Ex"
else
tunnel = "Stadium\\Giuseppe Meazza"
end
elseif ctx.stadium == 52 then
if ctx.timeofday == 0 then
tunnel = "Stadium\\Emirates Ex"
end
else
tunnel = nil
end
if tunnel ~= nil then
return string.format("%s:%s", tunnel, filename)
end
end

local function get_filepath(ctx, filename, key)
if key and tunnel ~= nil then
return string.format("%s\\%s\\%s", fileroot, tunnel, filename)
end
end

function make_log(ctx)
if tunnel ~= ni then
logResult = tunnel
logResult = string.gsub(logResult, "Stadium\\", "")
log("-------- " .. logResult)
end
end

local function init(ctx)
if fileroot:sub(1,1)=='.' then
fileroot = ctx.sider_dir .. fileroot
end
ctx.register("trophy_rewrite", make_log)
ctx.register("livecpk_make_key", make_key)
ctx.register("livecpk_get_filepath", get_filepath)
end

return { init = init }
Io ho 33 come ID dell'Anfield e 21 per il Bernabeu.:rolleyes:
 

SimoMoki

Giovanissimi A
9 Novembre 2019
445
997
93
salve quando seleziono lo Stamford Bridge mi esce la vista aerial stadio esterna del Bernabeu
ho aperto il modulo tunnel ma non son dove sia il problema

-- módulo de túnel y cinematicas para PES 2020 : Jostike Games
-- solo sider 6.1 en adelante



local fileroot = ".\\content\\tunnel"

local function make_key(ctx, filename)
if ctx.stadium == 21 then
if ctx.timeofday == 0 then
tunnel = "Stadium\\Anfield Ex"
else
tunnel = "Stadium\\Anfield"
end
elseif ctx.stadium == 61 then
if ctx.timeofday == 0 then
tunnel = "Stadium\\Santiago_de_chile Ex"
else
tunnel = "Stadium\\Santiago_de_chile"
end
elseif ctx.stadium == 51 then
if ctx.timeofday == 0 then
tunnel = "Stadium\\Signal Iduna Park Ex"
else
tunnel = "Stadium\\Signal Iduna Park"
end
elseif ctx.stadium == 63 then
if ctx.timeofday == 0 then
tunnel = "Stadium\\Veltis Arena Ex"
end
elseif ctx.stadium == 24 then
if ctx.timeofday == 0 then
tunnel = "Stadium\\Maracana Ex"
end
elseif ctx.stadium == 7 then
if ctx.timeofday == 0 then
tunnel = "Stadium\\Old Trafford Ex"
end
elseif ctx.stadium == 19 then
if ctx.timeofday == 0 then
tunnel = "Stadium\\libertadores_De_america"
else
tunnel = "Stadium\\libertadores_De_america"
end
elseif ctx.stadium == 82 then
if ctx.timeofday == 0 then
tunnel = "Stadium\\Etihad Ex"
else
tunnel = "Stadium\\Etihad"
end
elseif ctx.stadium == 22 then
if ctx.timeofday == 0 then
tunnel = "Stadium\\Juventus Ex"
end
elseif ctx.stadium == 11 then
if ctx.timeofday == 0 then
tunnel = "Stadium\\Allianz arena Ex"
end
elseif ctx.stadium == 04 then
if ctx.timeofday == 0 then
tunnel = "Stadium\\Santiago Bernabeu Ex"
else
tunnel = "Stadium\\Santiago Bernabeu"
end
elseif ctx.stadium == 27 then
if ctx.timeofday == 0 then
tunnel = "Stadium\\Monumental Ex"
else
tunnel = "Stadium\\Monumental Ex"
end
elseif ctx.stadium == 28 then
if ctx.timeofday == 0 then
tunnel = "Stadium\\Bombonera Ex"
end
elseif ctx.stadium == 1 then
if ctx.timeofday == 0 then
tunnel = "Stadium\\Giuseppe Meazza Ex"
else
tunnel = "Stadium\\Giuseppe Meazza"
end
elseif ctx.stadium == 52 then
if ctx.timeofday == 0 then
tunnel = "Stadium\\Emirates Ex"
end
else
tunnel = nil
end
if tunnel ~= nil then
return string.format("%s:%s", tunnel, filename)
end
end

local function get_filepath(ctx, filename, key)
if key and tunnel ~= nil then
return string.format("%s\\%s\\%s", fileroot, tunnel, filename)
end
end

function make_log(ctx)
if tunnel ~= ni then
logResult = tunnel
logResult = string.gsub(logResult, "Stadium\\", "")
log("-------- " .. logResult)
end
end

local function init(ctx)
if fileroot:sub(1,1)=='.' then
fileroot = ctx.sider_dir .. fileroot
end
ctx.register("trophy_rewrite", make_log)
ctx.register("livecpk_make_key", make_key)
ctx.register("livecpk_get_filepath", get_filepath)
end

return { init = init }
Ho messo tutto a posto stanotte, nel file .lua devi avere gli ID degli stadi uguali a quelli che hai nel tuo stadium-server, ma questo non basta, per vedere le corrette aerial view non puoi avere stadi con lo stesso ID, mi si presentava il tuo stesso problema, a me si vedeva l'anteprima di Anfield al Bernabeu....
Mi sono cercato stadi con id diversi e adesso è tutto perfetto!
Spero di esser stato chiaro ;)
 

Cloud80

Primavera
21 Settembre 2017
2,039
2,485
113
L'ingresso dell'Anfield non e' centrato con l'arco della premier, o viceversa, e il tunnel originale non si vede, si vede nello stadio Bernabeu.
Qualcuno di voi che ha risolto questi problemi potrebbe cortesemente condividere questi stadi corretti, se possibile, grazie.:rolleyes:
 

avengedsevenfold84

Prima squadra
19 Novembre 2017
4,131
3,096
113
PSN ID
scarface84cik
Ho messo tutto a posto stanotte, nel file .lua devi avere gli ID degli stadi uguali a quelli che hai nel tuo stadium-server, ma questo non basta, per vedere le corrette aerial view non puoi avere stadi con lo stesso ID, mi si presentava il tuo stesso problema, a me si vedeva l'anteprima di Anfield al Bernabeu....
Mi sono cercato stadi con id diversi e adesso è tutto perfetto!
Spero di esser stato chiaro ;)

Non tanto...apro il modulo tunnel e cambio l'id degli stadi presenti con lo stesso ID presente nel maltese dello stadium server. Finché qua forse ho capito la seconda parte meno
 

SimoMoki

Giovanissimi A
9 Novembre 2019
445
997
93
Non tanto...apro il modulo tunnel e cambio l'id degli stadi presenti con lo stesso ID presente nel maltese dello stadium server. Finché qua forse ho capito la seconda parte meno
Esatto nel tunnel.lua devi avere gli id dei tuoi stadi nello stadium-server, e fin qui tutto ok.
Il problema delle sovrapposizioni delle aeria view avviene se si hanno due stadi con lo stesso id,
Esempio:
Anfield ID 21
Bernabeu ID 21
Il tunnel.lua utilizzzerà sempre quello di Anfield perchè dal modulo legge prima il 21 di Anfield, questo lo si può risolvere utilizzando un diverso Anfield, io per esempio utilizzo un Anfield con ID 33, o un diverso Bernabeu

Io li ho attivi tutti e 3
Io utilizzo il tunnel.lua altrimenti niente aerial view e tunnel, entrace.lua per ingressi e trofei, non utilizzo il trophy-server perchè ho già tutto nell'entrace.lua, dipende solo cosa vogliamo noi ;)
 
  • Like
Reactions: avengedsevenfold84

Cloud80

Primavera
21 Settembre 2017
2,039
2,485
113
Esatto nel tunnel.lua devi avere gli id dei tuoi stadi nello stadium-server, e fin qui tutto ok.
Il problema delle sovrapposizioni delle aeria view avviene se si hanno due stadi con lo stesso id,
Esempio:
Anfield ID 21
Bernabeu ID 21
Il tunnel.lua utilizzzerà sempre quello di Anfield perchè dal modulo legge prima il 21 di Anfield, questo lo si può risolvere utilizzando un diverso Anfield, io per esempio utilizzo un Anfield con ID 33, o un diverso Bernabeu
Il problema non e' l'esterno degli stadi, si vedono bene entrambi,l'unico problema che non riesco a risolvere e il tunnel dell'Anfield che non si vede, cambiando ID invece si vede sullo stadio del Bernabeu, io ho Anfield con ID 33 e Bernabeu con ID 21, come dovrebbero essere gli ID per risolvere il problema? Perche' se metto 21 al posto di 33 legge il tunnel sul Bernabeu giustamente, e invece con 33 non lo legge nell'Anfield?
Questo non riesco a capire, nella cartella dello stadio del Liverpool c'e' solo una cartella st33 mentre in quella del Real Madrid ci sono tutte le cartelle st da 01 a 082 , e' per quello?:rolleyes::(
 
  • Like
Reactions: avengedsevenfold84

Statistiche forum

Discussioni
37,612
Messaggi
1,997,718
Utenti registrati
64,882
Ultimo utente registrato
zimbo1988

Utenti online