New mrs + exe

Results 1 to 8 of 8
  1. #1
    The forgotten memory NesuxGxx is offline
    MemberRank
    May 2014 Join Date
    ZERONISLocation
    262Posts

    New mrs + exe

    I do not know what to say
    You need VS2013 to compile

    This code has edit to change the Encrypt code
    dllmain.cpp
    Code:
    const unsigned char XOR[16] ={0x57, 0x03, 0x7B, 0x04, 0x34, 0x06, 0x01,0x08, 0x37, 0x0A, 0x12, 0x69, 0x41, 0x38,0x0F, 0x74};



    SRC > CML > MZIP.cpp
    Code:
    
    const unsigned char XOR[16] =
    {
        0x57, 0x02, 0x5B, 0x04, 0x34, 0x06, 0x01,
        0x08, 0x37, 0x0A, 0x12, 0x69, 0x41, 0x38,
        0x0F, 0x78
    };
    //
    void RecoveryChar(char* pData, int _size)
    {
    
        if (!pData) return;
        
        for (int i = 0; i < _size; i++)
        {
            BYTE x = pData[i];
      
    
    
          
            for (int o = 0; o < 16; o++)
            {
                x = x ^ XOR[o % (sizeof(XOR) / sizeof(char))];
            }
            pData[i] = x;
        
        }
    
    
    }
    
    
    void ConvertChar(char* pData, int _size)
    {
        if (!pData) return;
        WORD w;
        BYTE b, bh;
        for (int i = 0; i<_size; i++) {
            b = *pData ^ 0xFF;
            w = b << 3;
            bh = (w & 0xff00) >> 8;
            b = w & 0xff;
            *pData = BYTE(b | bh);
            pData++;
    
    
        }
    }
    Last edited by NesuxGxx; 19-01-17 at 07:16 PM. Reason: Delete STR_ENCRYPT_END


  2. #2
    Member Gunzlatinov3 is offline
    MemberRank
    Nov 2016 Join Date
    PeruLocation
    74Posts

    Re: New mrs + exe

    I do not understand what I have to do with the files, someone explains to me please

  3. #3
    Account Upgraded | Title Enabled! Arenbunny is offline
    MemberRank
    Mar 2013 Join Date
    Peru - AyacuchoLocation
    273Posts

    Re: New mrs + exe


  4. #4
    The forgotten memory NesuxGxx is offline
    MemberRank
    May 2014 Join Date
    ZERONISLocation
    262Posts

    Re: New mrs + exe

    nop, Credits src Vital GZ

  5. #5
    Valued Member ragezonezs is offline
    MemberRank
    Feb 2011 Join Date
    118Posts

    Re: New mrs + exe

    how it works? i dont understand can someone help me how it works? when i change my mzip.cpp to my source and rebuild it my Gunz.exe doesn't work

    check my mlog

    GUNZ 1,0,0,290 launched. build (Apr 18 2020 18:06:12)
    Log time (04/18/20 18:13:05)
    CPU ID = GenuineIntel ( family = 518 , model = 10 , stepping = 7 ) @ 2494 MHz
    Display Device = Intel(R) HD Graphics 3000 ( vendor=8086 device=126 subsys=c606144d revision=9 )
    Display Driver Version = 9.17.0010.4229
    Windows = 6.2 Build 9200 , (2097151KB) : ..
    Cannot open system/locale.xml file.
    Error!! - StringTable Initalize Failed
    Cannot open (null) file.
    Invalid Locale

  6. #6

    Re: New mrs + exe

    Sup Ragezonezs, try to encrypt all your .mrs files in the same encryption you used in source..

  7. #7
    Valued Member ragezonezs is offline
    MemberRank
    Feb 2011 Join Date
    118Posts

    Re: New mrs + exe

    how can i encryp my .mrs in the same encryption code?

  8. #8

    Re: New mrs + exe

    Well, i think u downloaded the files he released?
    Unpack that rar file into a folder named: GunZ_Encryption or something.

    In there you see these files:

    1. CustomCrypt (Source Folder)
    2. CustomCrypt.dll
    3. Fantasyparket.exe
    4. Parket.bat
    5. unparket.bat

    If you use the same encryption key he released then drag your decompiled folders into the folder you made and click on parket.bat.
    It will open a command prompt, then it will ask u to insert the decompiled folder name.

    If you've done that right it will compile without any errors and you should see something like: System.nxs

    If you want to change .nxs to .mrs, hexedit the fantasyparket.exe and change nxs to mrs
    Goodluck and let us know if it worked!
    Feel free to ask any question!
    Last edited by TxDutch; 21-04-20 at 01:08 PM. Reason: Added information



Advertisement