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
PS2 Battle Stadium D.O.N
-
aluigi
- Site Admin
- Posts: 12984
- Joined: Wed Jul 30, 2014 9:32 pm
Re: PS2 Battle Stadium D.O.N
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 iJust 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
Thank you for your help
I use this one to extract files from dta.afs
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