Quote:
Originally Posted by Miracle`
I have this one in my Neuz.cpp file.
Code:
void CNeuzApp::BeginLoadThread()
{
#ifdef __AES
CResFile::ScanResource("Model\\");
#else
CResFile::ScanResource("");
#endif
prj.LoadPreFiles();
m_hThread = (HANDLE)_beginthread(LoadProperty, 0, (LPVOID)this);
#if !defined(_DEBUG)
WaitLoading();
#endif
}
and then when i press "Encrypt" then i go to my "ResClient/Model" Folder theres no files in there.
Anyone? 
|
If you use the AES encrypter, the new encrypt files should be saved in
/data.
This code only says the neuz where to find the encrypt files.
change it to
Quote:
#ifdef __AES
CResFile::ScanResource( "" );
#else
CResFile::ScanResource( "" );
#endif
|
or just delete #ifdef __AES in this entry
so that the neuz EVERYTHING read about AES files when you put encrypt files in any folder.