PS2 Battle Stadium D.O.N

Extraction and unpacking of game archives and compression, encryption, obfuscation, decoding of unknown files
Shine
Posts: 32
Joined: Fri Oct 17, 2014 4:56 pm

PS2 Battle Stadium D.O.N

Post by Shine »

Can you help me to extract these datas, please.
They are from the game Battle Stadium D.O.N(PS2) data.afs
Then it's like another archives and I am lost
aluigi
Site Admin
Posts: 12984
Joined: Wed Jul 30, 2014 9:32 pm

Re: PS2 Battle Stadium D.O.N

Post by aluigi »

Code: Select all

comtype PRS_8ING
get ZERO long
get FILES long
get INFO_OFF long
get DAT_SIZE long
for i = 0 < FILES
    getdstring NAME 0x24
    get OFFSET long
    get ZSIZE long
    get SIZE long
    clog NAME OFFSET ZSIZE SIZE
next i

Just curious, what script you used to extract those files you provided?
Shine
Posts: 32
Joined: Fri Oct 17, 2014 4:56 pm

Re: PS2 Battle Stadium D.O.N

Post by Shine »

Thank you for your help
I use this one to extract files from dta.afs

Code: Select all

idstring "AFS\0"
get NUMRES long
for i = 0 < NUMRES
   get OFS long
   get SIZE long
   log "" OFS SIZE
next i