[PS2] Star Wars: Jedi Starfighter (.tex)
Posted: Sun Dec 15, 2019 6:38 am
here is Noesis python script to open the PS2 Jedi Starfighter tex files.
and here is a bms script to extract files from the PS2 pak archives and pmdl files.
sfdepak works too but i prefer to use the script. ![Satisfied :]](./images/smilies/%5Bcolon%5D%5D.gif)
and here is a bms script to extract files from the PS2 pak archives and pmdl files.
Code: Select all
# script for QuickBMS http://aluigi.altervista.org/quickbms.htm
get FOLDER basename
idstring "Europa Packfile"
goto 0x15
get TABLE_OFFSET long
get TABLE_SIZE long
get FILES long
goto TABLE_OFFSET
for i = 0 < FILES
get STR_SIZE byte
get FNAME string
get OFFSET long
get SIZE long
get HASH long
string NAME p "%s\%s" FOLDER FNAME
log NAME OFFSET SIZE
savepos OFFSET
goto OFFSET
next i