Here's a BMS script to extract your samples:
Code:
## Chulip (PS2) PAK extractor
## Script for QuickBMS: http://aluigi.altervista.org/quickbms.htm
for i = 0
get OFFSET long
if OFFSET == 0
break
endif
putarray 0 i OFFSET long
next i
math FILES = i
sortarray 0
for i = 0 < FILES
getarray OFFSET 0 i
math i + 1
if i == FILES
get PAK_SIZE asize
xmath SIZE "PAK_SIZE - OFFSET"
else
getarray NEXT_OFFSET 0 i
xmath SIZE "NEXT_OFFSET - OFFSET"
endif
get FNAME basename
string NAME p "%s_%03i." FNAME i
log NAME OFFSET SIZE
next
Not sure if this method is correct but at least it extract the files so there's that.
And also no proper filenames since there's no strings indicates it in the PAK files.