How to extract Samurai Shodown Sen K2MP file.

The Original Forum. Game archives, full of resources. How to open them? Get help here.
Post Reply
User avatar
dj082502
mega-veteran
mega-veteran
Posts: 202
Joined: Wed Oct 13, 2010 3:47 am
Has thanked: 37 times
Been thanked: 21 times

How to extract Samurai Shodown Sen K2MP file.

Post by dj082502 »

"xof 0303bin 0032" is model file.
"DDS....DXT3" is texture file.
Here are some K2MP files.
delete
Last edited by dj082502 on Fri Apr 13, 2012 6:44 pm, edited 1 time in total.
User avatar
aluigi
VVIP member
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.

Post by aluigi »

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:

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
Post Reply