When opening c001.bnd in a hex editor I can see the names of files like c001.mdl (and starting at line 00003350 when opened in a hex editor there seems to be bone names, so the model is in there) but I'm not sure how to extract them.
c001.bnd: https://drive.google.com/file/d/1mXwiVO ... mM8G3/view
Here's the script I used
Code: Select all
#Kuon all.bnd extractor
#by chrrox
#quickbms script
goto 0xC
get FILES long
savepos TMP
for i = 0 < FILES
goto TMP
get ID long
get OFFSET long
get SIZE long
get NOFF long
savepos TMP
goto NOFF
get NAME string
log NAME OFFSET SIZE
next i