Hi! I need a script to extract the content inside DATA.PAK.
https://mega.nz/#!60UBHKwQ!wrr2C8ZoaDO8 ... tQhUDurSVM
Thanks!
Dora the Explorer: Journey to the Purple Planet [PS2] DATA.PAK
-
- Posts: 140
- Joined: Mon Feb 05, 2018 5:45 pm
-
- Posts: 11
- Joined: Fri Sep 07, 2018 1:37 pm
Re: Dora the Explorer: Journey to the Purple Planet [PS2] DATA.PAK
The headers look pretty simple, so this should do it.
Code: Select all
get FILES long
goto 0x800
for i = 0 < FILES
get NAME string
padding 0x30 0 0x7F8
get OFFSET long
math OFFSET * 0x800
get SIZE long
log NAME OFFSET SIZE
next i
-
- Posts: 140
- Joined: Mon Feb 05, 2018 5:45 pm
Re: Dora the Explorer: Journey to the Purple Planet [PS2] DATA.PAK
THANK YOU! It works perfectly.