07-29-2017, 07:56 PM
(This post was last modified: 07-29-2017, 07:57 PM by Awesome5872.)
(07-29-2017, 07:39 PM)Pingu! Wrote: Script for QuickBMS to extract the *.pak's:
Code:# Jimmy Neutron Attack of the Twonkies *.PAK
# Written By Anex For QuickBMS
endian big
idstring "pack"
get ZERO long
get HEADERSIZE long
get ARKSIZE long
get FNTABLE long
get FCOUNT long
get ZERO long
savepos TABLE
for i = 0 < FCOUNT
get OFFSET long
get SIZE long
get DUMMYSIZE long //looks like fname size, but it isn't
savepos TABLE
goto FNTABLE
get NAME string
savepos FNTABLE
goto TABLE
log NAME OFFSET SIZE
next i
will this work with all the game's pak files?