Important information: this site is currently scheduled to go offline indefinitely by end of the year.

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

Read or post about compression. And decompression. Or ask questions how to decompress your files.
Post Reply
Kojinzx
ultra-n00b
Posts: 3
Joined: Wed Jul 15, 2015 1:47 pm
Has thanked: 1 time

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

Post 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
Last edited by Kojinzx on Sun Jan 15, 2017 2:41 pm, edited 1 time in total.
happydance
beginner
Posts: 28
Joined: Thu Apr 17, 2014 3:11 pm
Has thanked: 1 time
Been thanked: 3 times

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

Post by happydance »

I believe your link is dead or wrong...
Kojinzx
ultra-n00b
Posts: 3
Joined: Wed Jul 15, 2015 1:47 pm
Has thanked: 1 time

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

Post by Kojinzx »

happydance wrote:I believe your link is dead or wrong...
sry, butfor now its may work
Gh0stBlade
Moderator
Posts: 719
Joined: Mon Jul 05, 2010 8:55 pm
Has thanked: 20 times
Been thanked: 496 times

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

Post 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];
}
Click the thanks button if I helped!
Post Reply