Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[Development] Decrypt Files OZD, OZG,Player.bmd,GLancerSkin

Joined
Mar 13, 2008
Messages
758
Reaction score
1,003
i do it in Main 1.06.14
Code:
#include <fstream>using namespace std;
#define pDecryptDS ((int(__cdecl*)(int a1,int a2,int a3)) 0x6156A9)
int result;
int counter=0;
void FileSave(int From,int size,char * extension)
{    char NameFile[11] = {0};  
  if(strcmp(".ozd",extension)==0) 
   {        wsprintf(NameFile,"file%d.dds",counter);  
  } 
   else    {    
    wsprintf(NameFile,"file%d%s",counter,extension);
    }      
      std::ofstream outfile (NameFile,std::ofstream::binary);   
 outfile.write((const char*)From,size);  
  outfile.close();    counter++;    }

int DecryptDS(int a1,int a2,int Size,char * extension)
{    
result= pDecryptDS(a1,a2,Size);   
 FileSave(a1,Size,extension); 
   return result;
}
BOOL APIENTRY DllMain(HMODULE hModule ,DWORD ul_reason_for_call,LPVOID lpReserved)
{ 
   switch( ul_reason_for_call )  
   {         case DLL_PROCESS_ATTACH: 
       {            DWORD dwOldProtect;  
            int iRes = VirtualProtect((LPVOID)0xA4AABE, 5, PAGE_EXECUTE_READWRITE, & dwOldProtect);      
       *(DWORD*)(0xA4AABE+1) = (DWORD)&DecryptDS - (0xA4AABE+5);       
     *(BYTE*)(0xA4AABE) = 0xE8;        }   
     case DLL_PROCESS_DETACH:      
  {        }  
  }    return true;}


OZD = .dds Can use a plugin of Nvidia for photoshop to look it
OZG = CFX can use JPEXS Free Flash Decompiler to look it
Link with all OZD and OZG decrypted


player bmd from s11 decrypted

http://www.mediafire.com/file/9r72i3xhwt7zqzb/PlayerS11.rar

can use milkshape3d to look it.

GrowLancerSkin



Pinkof - [Development] Decrypt Files OZD, OZG,Player.bmd,GLancerSkin - RaGEZONE Forums




added player.bmd decrypted.
added GrowLancerSkin

i hope that someone can fix the skin of grow lancer for s6 or minor version.
 
Last edited:
Newbie Spellweaver
Joined
Jul 30, 2021
Messages
5
Reaction score
0
Hi guys!
I want to decrypt this file, please help me
I thank you and appreciate it
 
Newbie Spellweaver
Joined
Jul 30, 2021
Messages
5
Reaction score
0
more information about this file? from what client season, what files
Hi bro, it's season 16, part 1
main file here

thank bro
 
Newbie Spellweaver
Joined
Jul 30, 2021
Messages
5
Reaction score
0
more information about this file? from what client season, what files
Hi bro, it's season 16 part 1.3
here is main.exe file
thank bro,
tell me if you need some more file
 
Joined
May 26, 2009
Messages
17,304
Reaction score
3,217
Hi bro, it's season 16 part 1.3
here is main.exe file
thank bro,
tell me if you need some more file


sorry i dont do coding, cracking and so on, i thought you were asking for other mu files like .bmd etc *which is thread related*
if you dont get any answer here or help please make 1 thread in MU Help section and stick to that one patiently.

thanks
 
Back
Top