Users browsing this thread: 1 Guest(s)
Mega Man X: Command Mission
#1
As with Maverick Hunter X, I've been wanting to rip from this specific game for a very long time and am a bit surprised that no one has really looked into it at all. The models and textures are packed into corresponding ".arc" files. Here's a few of them to get started.

Dropbox Link
Reply
Thanked by:
#2
Code:
# Mega Man X: Command Mission
# script for QuickBMS http://quickbms.aluigi.org

endian big

get ASIZE asize
for OFFSET = 0 < ASIZE
    goto OFFSET
    math NAMELEN = 8
    math DONE = 0
    
    do
        get TEST byte
        if TEST != 0
            goto -1 0 SEEK_CUR
            DONE = 1
        else
            math NAMELEN -= 1
        endif
    while DONE != 1
    
    getdstring NAME NAMELEN
    get FLAG1 short
    get FLAG2 short
    get SIZE long
    goto 16 0 SEEK_CUR
    
    savepos OFFSET
    string NAME += "."
    string NAME += FLAG1
    string NAME += "_"
    string NAME += FLAG2
    log NAME OFFSET SIZE
    math OFFSET += SIZE
next
Reply
Thanked by: Carpaccio
#3
Well it gets them unpacked...though I have no clue what to do with the resulting files...
Reply
Thanked by:
#4
Post them here so we can help out Smile
Reply
Thanked by:
#5
Here's a MaxScript to import the models (*.1_4 files).
Not sure where the rigging or bones are though.
The textures are stored in the *.1_0 files, but I don't know enough about gamecube texture formats to be able to convert them.


Attached Files
.zip   MegaManXCommandMission.zip (Size: 1.75 KB / Downloads: 236)
Reply
#6
Er, this script consistently gives an error when trying to import anything. Something about 'Float' or some such.
Reply
Thanked by:
#7
(09-14-2015, 04:56 PM)Carpaccio Wrote: Er, this script consistently gives an error when trying to import anything. Something about 'Float' or some such.

Sorry. I updated the attachment.
Reply
Thanked by: Carpaccio
#8
Awesome! Works perfectly now!
Reply
Thanked by:
#9
Any luck with the models?
Reply
Thanked by:
#10
Yes, that script posted imports them into 3DSmax perfectly. Only problem is the textures. They need to be extracted either manually or someone needs to find a way to convert them.
Reply
Thanked by:
#11
You could always try dumping them using an emulator.
Reply
Thanked by:
#12
I went the lazy route and extracted them from the PS2 version since they're the same, and actually common formats there (tim2 files). Also, UVs on extracted models are flipped, so just flip the textures vertically if you have to.
Reply
Thanked by:
#13
Does this help?
http://www.sprites-inc.co.uk/sprite.php?...M/Textures
Reply
Thanked by:
#14
(09-15-2015, 09:27 PM)Carpaccio Wrote: I went the lazy route and extracted them from the PS2 version since they're the same, and actually common formats there (tim2 files). Also, UVs on extracted models are flipped, so just flip the textures vertically if you have to.
Could you post the PS2 Model files?
Reply
Thanked by:
#15
Well I can post a sample, sure. Here's what seems to be Epsilon's battle model files.

Dropbox Link
Reply
Thanked by:


Forum Jump: