(help) Extraction of hidden files from PS2 game

Extraction and unpacking of game archives and compression, encryption, obfuscation, decoding of unknown files
puntaPrince93
Posts: 3
Joined: Tue Apr 12, 2022 8:09 pm

(help) Extraction of hidden files from PS2 game

Post by puntaPrince93 »

Hello,

I wish to translate a PS2 videogame in ITALIAN language.

I' vre tried to mounting the ISO file with cdmage and I've found these (unzip the file).

I've tried to open the iso file also with HxD to find some dialogues but I can't find anything.

Could someone help me to disassemble correctly the iso (hidden files included)?

Thanks :-)
rabatini
Posts: 179
Joined: Tue Jan 18, 2022 12:21 am

Re: (help) Extraction of hidden files from PS2 game

Post by rabatini »

puntaPrince93 wrote:Hello,

I wish to translate a PS2 videogame in ITALIAN language.

I' vre tried to mounting the ISO file with cdmage and I've found these (unzip the file).

I've tried to open the iso file also with HxD to find some dialogues but I can't find anything.

Could someone help me to disassemble correctly the iso (hidden files included)?

Thanks :-)


try this script of aluigi

Code: Select all

get INFO_SIZE long
padding 0x800
math FILES = INFO_SIZE
math FILES / 0x1c
for i = 0 < FILES
    getdstring NAME 0x10
    get TYPE long
    get OFFSET long
    get DUMMY long
    putarray 0 i NAME
    putarray 1 i OFFSET
next i
    get OFFSET asize
        putarray 0 i ""
        putarray 1 i OFFSET

sortarray 1 1

for i = 0 < FILES
    getarray NAME   0 i
    getarray OFFSET 1 i
    math i + 1
    getarray SIZE   1 i
    math SIZE - OFFSET
    if SIZE != 0
        log NAME OFFSET SIZE
    endif
next


molti file
puntaPrince93
Posts: 3
Joined: Tue Apr 12, 2022 8:09 pm

Re: (help) Extraction of hidden files from PS2 game

Post by puntaPrince93 »

hello,

thanks for replying.

Where I must put the script?
puntaPrince93
Posts: 3
Joined: Tue Apr 12, 2022 8:09 pm

Re: (help) Extraction of hidden files from PS2 game

Post by puntaPrince93 »

hello,

I can't paste your code into quickbms. The software requires the script file that I haven't.

Could you send me the .bms with your code, please?

Code: Select all

Code:
get INFO_SIZE long
padding 0x800
math FILES = INFO_SIZE
math FILES / 0x1c
for i = 0 < FILES
    getdstring NAME 0x10
    get TYPE long
    get OFFSET long
    get DUMMY long
    putarray 0 i NAME
    putarray 1 i OFFSET
next i
    get OFFSET asize
        putarray 0 i ""
        putarray 1 i OFFSET

sortarray 1 1

for i = 0 < FILES
    getarray NAME   0 i
    getarray OFFSET 1 i
    math i + 1
    getarray SIZE   1 i
    math SIZE - OFFSET
    if SIZE != 0
        log NAME OFFSET SIZE
    endif
next


thanks
rabatini
Posts: 179
Joined: Tue Jan 18, 2022 12:21 am

Re: (help) Extraction of hidden files from PS2 game

Post by rabatini »

Just open the Notepad.
paste the script, and save as name.bms
and then open with quickbms.