Carnivores: Dinosaur Hunter Reborn - packdata.pak

Extraction and unpacking of game archives and compression, encryption, obfuscation, decoding of unknown files
AlphaTwentyThree
Posts: 909
Joined: Sat Aug 09, 2014 11:21 am

Carnivores: Dinosaur Hunter Reborn - packdata.pak

Post by AlphaTwentyThree »

All the game's files are packed in one big archive: http://*USE_ANOTHER_FILEHOSTING*/13fd019 ... ackdata.7z
Somehow I couldn't figure out how to write a script quickly, so I'm hoping for somebody more experienced than me. ;) Any help is appreciated! :)
Ekey
Posts: 1383
Joined: Sat Aug 09, 2014 2:34 pm

Re: Carnivores: Dinosaur Hunter Reborn - packdata.pak

Post by Ekey »

Code: Select all

# Carnivores: Dinosaur Hunter Reborn (PAK format)
# Written by Ekey (h4x0r)
# script for QuickBMS http://quickbms.aluigi.org

goto 0x8
get FILES long

for i = 0 < FILES
    getdstring DUMMY 0xC
    getdstring NAME 0x40
    get CRC long
    get SIZE long
    get OFFSET long
    log NAME OFFSET SIZE
next i
AlphaTwentyThree
Posts: 909
Joined: Sat Aug 09, 2014 11:21 am

Re: Carnivores: Dinosaur Hunter Reborn - packdata.pak

Post by AlphaTwentyThree »

thanks! :)