Scooby Doo First Frights PACKFILE.DAT

Extraction and unpacking of game archives and compression, encryption, obfuscation, decoding of unknown files
Mygoshi
Posts: 654
Joined: Mon Oct 27, 2014 1:49 pm

Scooby Doo First Frights PACKFILE.DAT

Post by Mygoshi »

Hello!

This game stores most of its graphic content in this archive, called PACKFILE.DAT

https://mega.nz/#!6gEgjIwB!LYQAoj9vu7uH ... lOWeeP1Rus
https://mega.nz/#!a9FziDID!hZSHRLy_fUvg ... V4JNYOMdCo

Thanks in advance if anyone can write a script to extract the archive.
Last edited by Mygoshi on Mon Feb 22, 2021 1:39 pm, edited 2 times in total.
Ekey
Posts: 1383
Joined: Sat Aug 09, 2014 2:34 pm

Re: Scooby Doo First Frights PACKFILE.DAT

Post by Ekey »

Code: Select all

# Scooby-Doo! First Frights (PAK format)
# Written by Ekey (h4x0r)
#
# script for QuickBMS http://quickbms.aluigi.org

idstring "PAK\x00"
get FILES long

for i = 0 < FILES
    get HASH long
    get OFFSET long
    get ZSIZE long
    savepos TEMP
    goto OFFSET

    getdstring ID 4 #!ZLS
    get SIZE long
    math ZSIZE -= 8
    savepos OFFSET
    clog "" OFFSET ZSIZE SIZE
    goto TEMP
next i
Mygoshi
Posts: 654
Joined: Mon Oct 27, 2014 1:49 pm

Re: Scooby Doo First Frights PACKFILE.DAT

Post by Mygoshi »

Thanks, that was fast! Do you have any infos for Spider-Man 3 on PS3 & PC ?
Ekey
Posts: 1383
Joined: Sat Aug 09, 2014 2:34 pm

Re: Scooby Doo First Frights PACKFILE.DAT

Post by Ekey »

More specifically, what you mean?
Mygoshi
Posts: 654
Joined: Mon Oct 27, 2014 1:49 pm

Re: Scooby Doo First Frights PACKFILE.DAT

Post by Mygoshi »

I need to extract .ps3ssb archives and .pcssb archives of Spider-Man 3 (PS3 & PC). So I asked to you if you can help to do it ^^