Dora the Explorer: Journey to the Purple Planet [PS2] DATA.PAK

Extraction and unpacking of game archives and compression, encryption, obfuscation, decoding of unknown files
Warthog1336
Posts: 140
Joined: Mon Feb 05, 2018 5:45 pm

Dora the Explorer: Journey to the Purple Planet [PS2] DATA.PAK

Post by Warthog1336 »

Hi! I need a script to extract the content inside DATA.PAK.

https://mega.nz/#!60UBHKwQ!wrr2C8ZoaDO8 ... tQhUDurSVM

Thanks!
iltrof
Posts: 11
Joined: Fri Sep 07, 2018 1:37 pm

Re: Dora the Explorer: Journey to the Purple Planet [PS2] DATA.PAK

Post by iltrof »

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
Warthog1336
Posts: 140
Joined: Mon Feb 05, 2018 5:45 pm

Re: Dora the Explorer: Journey to the Purple Planet [PS2] DATA.PAK

Post by Warthog1336 »

THANK YOU! It works perfectly.