About AES Encryption

03/30/2021 16:34 Miracle`#1
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? :confused:
03/30/2021 23:31 B1ackSnow#2
Quote:
Originally Posted by Miracle` View Post
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? :confused:
Welcome back from your vacation buddy
You know how to pm me for get some help :)
03/31/2021 04:21 siono01#3
Quote:
Originally Posted by Miracle` View Post
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? :confused:
Try to create a Model folder in ResClient and take a look
03/31/2021 04:33 Miracle`#4
Quote:
Originally Posted by siono01 View Post
Try to create a Model folder in ResClient and take a look
Yeah i did this but still no files there
04/01/2021 01:02 Steffen Tequila#5
Quote:
Originally Posted by Miracle` View Post
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? :confused:
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.