"xof 0303bin 0032" is model file.
"DDS....DXT3" is texture file.
Here are some K2MP files.
delete
How to extract Samurai Shodown Sen K2MP file.
- aluigi
- VVIP member

- Posts: 1916
- Joined: Thu Dec 08, 2005 12:26 pm
- Location: www.ZENHAX.com
- Has thanked: 4 times
- Been thanked: 654 times
- Contact:
Re: How to extract Samurai Shodown Sen K2MP file.
uhmmm it looks like k2mp is a generic container but then the archived files have their formats and some of them are just like archives.
an example is "TBSx" which contains the dds.
in my opinion it's better to go with a generic ripper.
anyway the following is a script for takeing the archives from k2mp:
an example is "TBSx" which contains the dds.
in my opinion it's better to go with a generic ripper.
anyway the following is a script for takeing the archives from k2mp:
Code: Select all
endian big
idstring "K2MP"
get DUMMY long
get MAX_OFF long
get DUMMY long
for
savepos MYOFF
if MYOFF >= MAX_OFF
break
endif
get OFFSET long
get SIZE long
if OFFSET != 0
if OFFSET != 0xffffffff
log "" OFFSET SIZE
endif
endif
next
