[Help] Neuz and .res files

08/16/2016 00:18 jjj1991#1
Hi guys! I have little problem, mb somebody know how to fix that:

When my .res files into client(like data,datasub1,datasub2) was encrypted = neuz don't want be start. But if my .res files is open he launch perfectly.

So my question is: How to launch neuz with encrypted .res files?

Mb somebody know how to fix this problem or maybe have any ideas about this...:(

P.s. I very sorry about my english
08/19/2016 17:17 jeromerz#2
if your using an encrypter you need to edit file.cpp and file.h on your __Common folder
08/25/2016 01:07 jjj1991#3
Quote:
Originally Posted by jeromerz View Post
if your using an encrypter you need to edit file.cpp and file.h on your __Common folder
File.cpp
Quote:
WORD CResFile::GetW( void )
{
if( !m_bResouceInFile )
return CFileIO::GetW();
else
{
WORD w;
m_File.Read( &w, sizeof( w ) );
m_nFileCurrentPosition += sizeof( w );
if( IsEncryption() )
{
BYTE h, l;
h = Decryption( m_byEncryptionKey, w >> 8 );
l = Decryption( m_byEncryptionKey, w & 0x00ff );
return h << 8 | l;
}
return w;
}
}
This one?