Page 1 of 1

Can anyone Help me extract/insert Caladrius Blaze .mma files

Posted: Sun Jan 15, 2017 11:45 am
by Kojinzx
Can anyone help me open,edit,unpack those files extensions :)
I want redraw some of game art but cant edit this file

file for check
https://drive.google.com/file/d/0B9xTXq ... sp=sharing

thnx

Re: Can anyone Help me extract/insert Caladrius Blaze .mma f

Posted: Sun Jan 15, 2017 1:28 pm
by happydance
I believe your link is dead or wrong...

Re: Can anyone Help me extract/insert Caladrius Blaze .mma f

Posted: Sun Jan 15, 2017 2:43 pm
by Kojinzx
happydance wrote:I believe your link is dead or wrong...
sry, butfor now its may work

Re: Can anyone Help me extract/insert Caladrius Blaze .mma f

Posted: Sun Jan 15, 2017 4:08 pm
by Gh0stBlade
Zlib compressed

Code: Select all

struct MMAFileEntry
{
    unsigned char m_fileName[256];
    unsigned int m_uncompressedSize;//unconfirmed
    unsigned int m_compressedSize;
    unsigned int m_flags;//Might be flags 1 = compressed?
    unsigned int m_offset;//Relative, base is end of MMAFileEntry list or (0x20+m_numFiles*0x110
};

struct MMA
{
    unsigned char m_magic[16];//"MMArchiver2.000
    unsigned int m_numFiles;
    unsigned int m_padding00;
    unsigned int m_padding01;
    unsigned int m_padding02;
    MMAFileEntry[m_numFiles];
}