Server Crash (MySQL R40)
#1

Out of nowhere when I join the server, the script gets the password and salt and stores if for reference for when someone tries to login to an account, but for some reason as of this morning (keep in mind nothing has been changed) the server has been crashing whilst attempting to get the salt for reference/


Код:
	mysql_format(MySQL_Connection, temp_query, sizeof(temp_query), "SELECT * FROM `MasterAccounts` WHERE `AccountName` = '%e' LIMIT 1", MasterInformation[playerid][AccountName]);
	mysql_tquery(MySQL_Connection, temp_query, "OnMasterDataReceived", "d", playerid);

	if(cache_num_rows() > 0)
	{
		cache_get_value(0, "AccountPassword", MasterInformation[playerid][AccountPassword]);
		cache_get_value(0, "AccountPasswordSalt", MasterInformation[playerid][AccountPasswordSalt]); // Crash Cause

		ClientFlagInformation[playerid][CacheID] = cache_save();
		Dialog_Show(playerid, Dialog_MasterLogin, DIALOG_STYLE_PASSWORD, "Master Account Login", "'%s' is already registered, please enter the password to continue.", "Login", "Quit", MasterInformation[playerid][AccountName]);
	} else {
		Dialog_Show(playerid, Dialog_MasterRegister, DIALOG_STYLE_PASSWORD, "Master Account Register", "'%s' has not been registered, please enter a password to continue.", "Register", "Quit", MasterInformation[playerid][AccountName]);
	}
Log
Код:
[11:08:13] [debug] Server crashed while executing script.amx
[11:08:13] [debug] AMX backtrace:
[11:08:13] [debug] #0 native cache_get_value_name () from mysql.DLL
[11:08:13] [debug] #1 0003ead4 in public OnMasterDataReceived (playerid=0) at E:\ARLZ\[NO NAME] Project\script.pwn:489
[11:08:13] [debug] Native backtrace:
[11:08:13] [debug] #0 7758253f in ?? () from C:\WINDOWS\SYSTEM32\ntdll.dll
[11:08:13] [debug] #1 77558e7f in ?? () from C:\WINDOWS\SYSTEM32\ntdll.dll
[11:08:13] [debug] #2 0f8345a5 in ?? () from C:\WINDOWS\SYSTEM32\VCRUNTIME140.dll
[11:08:13] [debug] #3 634ea047 in ?? () from plugins\mysql.DLL
[11:08:13] [debug] #4 634e9b1d in ?? () from plugins\mysql.DLL
[11:08:13] [debug] #5 634ea71f in ?? () from plugins\mysql.DLL
[11:08:13] [debug] #6 634e9c7a in ?? () from plugins\mysql.DLL
[11:08:13] [debug] #7 634e39f7 in ?? () from plugins\mysql.DLL
[11:08:13] [debug] #8 634ef6d5 in ?? () from plugins\mysql.DLL
[11:08:13] [debug] #9 634ffbd0 in ?? () from plugins\mysql.DLL
[11:08:13] [debug] #10 63503541 in ?? () from plugins\mysql.DLL
[11:08:13] [debug] #11 004010b6 in ?? () from samp-server.exe
[11:08:13] [debug] #12 635562ca in ?? () from plugins\crashdetect.DLL
[11:08:13] [debug] #13 63558b28 in ?? () from plugins\crashdetect.DLL
[11:08:13] [debug] #14 635509c7 in ?? () from plugins\crashdetect.DLL
[11:08:13] [debug] #15 6355631a in ?? () from plugins\crashdetect.DLL
[11:08:13] [debug] #16 62eb4509 in ?? () from plugins\streamer.DLL
[11:08:13] [debug] #17 634e8682 in ?? () from plugins\mysql.DLL
[11:08:13] [debug] #18 63500f83 in ?? () from plugins\mysql.DLL
[11:08:13] [debug] #19 63501ffc in ?? () from plugins\mysql.DLL
[11:08:13] [debug] #20 634ecc61 in ?? () from plugins\mysql.DLL
[11:08:13] [debug] #21 634ece53 in ?? () from plugins\mysql.DLL
[11:08:13] [debug] #22 634ee7fe in ?? () from plugins\mysql.DLL
[11:08:13] [debug] #23 00469a66 in ?? () from samp-server.exe
[11:08:13] [debug] #24 0048d4db in ?? () from samp-server.exe
[11:08:13] [debug] #25 0049b4a1 in ?? () from samp-server.exe
[11:08:13] [debug] #26 0049b4b1 in ?? () from samp-server.exe
Reply
#2

You need to provide a length for it because sizeof doesn't work with enum-arrays.
Код:
cache_get_value(rowid, "field_name", enum_array, size);
EDIT: The function should return 0 for failure instead of crashing, this needs to be fixed because many people tend to forget the size.
Reply
#3

Quote:
Originally Posted by Konstantinos
Посмотреть сообщение
You need to provide a length for it because sizeof doesn't work with enum-arrays.
Код:
cache_get_value(rowid, "field_name", enum_array, size);
EDIT: The function should return 0 for failure instead of crashing, this needs to be fixed because many people tend to forget the size.
You my friend are a saviour, I totally forgot about the Size.. Granted I haven't used MySQL or written anything in PAWN (specifically for samp) in about a year.


Edit: Even with that change its still crashing.. Just for note the salt is '9Vu!W{JS'SLN', I'm actually starting to wonder if its one of the characters.
Reply
#4

Apostrophe is escaped so that shouldn't be a problem. I'll test myself though just to be sure.

Can you enable ALL in mysql_log (before mysql_connect) and post the mysql logs?
Reply
#5

Quote:
Originally Posted by Konstantinos
Посмотреть сообщение
Apostrophe is escaped so that shouldn't be a problem. I'll test myself though just to be sure.

Can you enable ALL in mysql_log (before mysql_connect) and post the mysql logs?
No need for that, when i use SendClientMessage i can already see it is correctly loaded inside the enumerator.
Reply
#6

Код:
[10:53:36] [DEBUG] mysql_set_option(1, 0) (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:598)
[10:53:36] [DEBUG] mysql_set_option: return value: '1' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:598)
[10:53:36] [DEBUG] mysql_connect("localhost", "root", "*****", "USRP", 1) (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:600)
[10:53:36] [DEBUG] CHandleManager::Create(this=0x651978, host='localhost', user='root', pass='****', db='USRP', options=0x674560)
[10:53:36] [INFO] Creating new connection handle...
[10:53:36] [WARNING] mysql_connect: no password specified (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:600)
[10:53:36] [DEBUG] CConnection::CConnection(this=0x6786f0, host='localhost', user='root', passw='****', db='USRP', options=0x674560)
[10:53:36] [DEBUG] CConnection::CConnection - new connection = 0x29c2fd8
[10:53:36] [DEBUG] CConnection::CConnection(this=0x2920020, host='localhost', user='root', passw='****', db='USRP', options=0x674560)
[10:53:36] [DEBUG] CConnection::CConnection - new connection = 0x29ce6a0
[10:53:36] [DEBUG] CThreadedConnection::WorkerFunc(this=0x2920020, connection=0x2920020)
[10:53:36] [DEBUG] CThreadedConnection::CThreadedConnection(this=0x2920020, connection=0x2920020)
[10:53:36] [DEBUG] CConnectionPool::CConnectionPool(size=2, this=0x6785f0)
[10:53:36] [DEBUG] CConnection::CConnection(this=0x4f45020, host='localhost', user='root', passw='****', db='USRP', options=0x674560)
[10:53:36] [DEBUG] CConnection::CConnection - new connection = 0x4d5bfb8
[10:53:36] [DEBUG] CThreadedConnection::WorkerFunc(this=0x4f45020, connection=0x4f45020)
[10:53:36] [DEBUG] CThreadedConnection::CThreadedConnection(this=0x4f45020, connection=0x4f45020)
[10:53:36] [DEBUG] CConnection::CConnection(this=0x5114020, host='localhost', user='root', passw='****', db='USRP', options=0x674560)
[10:53:36] [DEBUG] CConnection::CConnection - new connection = 0x4d65148
[10:53:36] [DEBUG] CThreadedConnection::WorkerFunc(this=0x5114020, connection=0x5114020)
[10:53:36] [DEBUG] CThreadedConnection::CThreadedConnection(this=0x5114020, connection=0x5114020)
[10:53:36] [INFO] Connection handle with id '1' successfully created.
[10:53:36] [DEBUG] CHandleManager::Create - new handle = 0x67caa0
[10:53:36] [DEBUG] mysql_connect: return value: '1' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:600)
[10:53:36] [DEBUG] mysql_errno(1) (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:601)
[10:53:36] [DEBUG] CHandle::GetErrorId(this=0x67caa0)
[10:53:36] [DEBUG] CConnection::GetError(this=0x6786f0, connection=0x29c2fd8)
[10:53:36] [DEBUG] CHandle::GetErrorId - return value: true, error id: '0', error msg: ''
[10:53:36] [DEBUG] mysql_errno: return value: '0' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:601)
[10:53:43] [DEBUG] mysql_format(1, 0x04C31C00, 1024, "SELECT * FROM `MasterAccounts` WHERE `AccountName` = '%e' LIMIT 1") (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:474)
[10:53:43] [DEBUG] CHandle::EscapeString(this=0x67caa0, src='Anthony_Hall')
[10:53:43] [DEBUG] CConnection::EscapeString(src='Anthony_Hall', this=0x6786f0, connection=0x29c2fd8)
[10:53:43] [DEBUG] CHandle::EscapeString - return value: true, escaped string: 'Anthony_Hall'
[10:53:43] [DEBUG] mysql_format: return value: '75' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:474)
[10:53:43] [DEBUG] mysql_tquery(1, "SELECT * FROM `MasterAccounts` WHERE `AccountName` = 'Anthony_Hall' LIMIT 1", "OnMasterDataReceived", "d") (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:475)
[10:53:43] [DEBUG] CCallback::Create(amx=0x2a5ab48, name='OnMasterDataReceived', format='d', params=0x4c31be8, param_offset=5)
[10:53:43] [DEBUG] CCallback::Create - callback index for 'OnMasterDataReceived': 19
[10:53:43] [DEBUG] processing specifier 'd' with parameter index 0
[10:53:43] [DEBUG] retrieved and pushed value '0'
[10:53:43] [INFO] Callback 'OnMasterDataReceived' set up for delayed execution.
[10:53:43] [DEBUG] created delayed callback with 1 parameter
[10:53:43] [DEBUG] CHandle::Execute(this=0x67caa0, type=1, query=0x67e8a8)
[10:53:43] [DEBUG] CHandle::Execute - return value: true
[10:53:43] [DEBUG] mysql_tquery: return value: '1' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:475)
[10:53:43] [DEBUG] CConnection::Execute(query=0x67e8a8, this=0x2920020, connection=0x29ce6a0)
[10:53:43] [DEBUG] CQuery::Execute(this=0x67e8a8, connection=0x29ce6a0)
[10:53:43] [INFO] query "SELECT * FROM `MasterAccounts` WHERE `AccountName` = 'Anthony_Hall' LIMIT 1" successfully executed
[10:53:43] [DEBUG] CCallback::Execute(amx=0x2a5ab48, index=19, num_params=1)
[10:53:43] [INFO] Executing callback 'OnMasterDataReceived' with 1 parameter...
[10:53:43] [DEBUG] processing internal specifier 'c'
[10:53:43] [DEBUG] pushed value '0' onto AMX stack
[10:53:43] [DEBUG] executing AMX callback with index '19'
[10:53:43] [DEBUG] cache_get_row_count(0x04C32C04) (E:\SA-MP-DEVELOPMENT\Server\pawno\include\a_mysql.inc:180)
[10:53:43] [DEBUG] cache_get_row_count: return value: '1' (E:\SA-MP-DEVELOPMENT\Server\pawno\include\a_mysql.inc:180)
[10:53:43] [DEBUG] cache_get_value_name(0, "AccountPassword", 0x03B3CD4C, 1) (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:482)
[10:53:43] [DEBUG] cache_get_value_name: assigned value: '6E0016F77EA1708F1AF175ACB3915D9A6D73F38BE0090A1412877DD5FD1859E7' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:482)
[10:53:43] [DEBUG] cache_get_value_name: return value: '1' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:482)
[10:53:43] [DEBUG] cache_get_value_name(0, "AccountPasswordSalt", 0x03B3CF3C, 1) (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:483)
[10:55:15] [DEBUG] mysql_set_option(1, 0) (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:602)
[10:55:15] [DEBUG] mysql_set_option: return value: '1' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:602)
[10:55:15] [DEBUG] mysql_connect("localhost", "root", "*****", "USRP", 1) (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:604)
[10:55:15] [DEBUG] CHandleManager::Create(this=0x5829d0, host='localhost', user='root', pass='****', db='USRP', options=0x5744a0)
[10:55:15] [INFO] Creating new connection handle...
[10:55:15] [WARNING] mysql_connect: no password specified (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:604)
[10:55:15] [DEBUG] CConnection::CConnection(this=0x578560, host='localhost', user='root', passw='****', db='USRP', options=0x5744a0)
[10:55:15] [DEBUG] CConnection::CConnection - new connection = 0x23d2fd8
[10:55:15] [DEBUG] CConnection::CConnection(this=0x4d5b020, host='localhost', user='root', passw='****', db='USRP', options=0x5744a0)
[10:55:15] [DEBUG] CConnection::CConnection - new connection = 0x23de6a0
[10:55:15] [DEBUG] CThreadedConnection::WorkerFunc(this=0x4d5b020, connection=0x4d5b020)
[10:55:15] [DEBUG] CThreadedConnection::CThreadedConnection(this=0x4d5b020, connection=0x4d5b020)
[10:55:15] [DEBUG] CConnectionPool::CConnectionPool(size=2, this=0x5783a0)
[10:55:15] [DEBUG] CConnection::CConnection(this=0x4f46020, host='localhost', user='root', passw='****', db='USRP', options=0x5744a0)
[10:55:15] [DEBUG] CConnection::CConnection - new connection = 0x4c6bfb8
[10:55:15] [DEBUG] CThreadedConnection::WorkerFunc(this=0x4f46020, connection=0x4f46020)
[10:55:15] [DEBUG] CThreadedConnection::CThreadedConnection(this=0x4f46020, connection=0x4f46020)
[10:55:15] [DEBUG] CConnection::CConnection(this=0x5110020, host='localhost', user='root', passw='****', db='USRP', options=0x5744a0)
[10:55:15] [DEBUG] CConnection::CConnection - new connection = 0x4c75148
[10:55:15] [DEBUG] CThreadedConnection::WorkerFunc(this=0x5110020, connection=0x5110020)
[10:55:15] [DEBUG] CThreadedConnection::CThreadedConnection(this=0x5110020, connection=0x5110020)
[10:55:15] [INFO] Connection handle with id '1' successfully created.
[10:55:15] [DEBUG] CHandleManager::Create - new handle = 0x57d850
[10:55:15] [DEBUG] mysql_connect: return value: '1' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:604)
[10:55:15] [DEBUG] mysql_errno(1) (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:605)
[10:55:15] [DEBUG] CHandle::GetErrorId(this=0x57d850)
[10:55:15] [DEBUG] CConnection::GetError(this=0x578560, connection=0x23d2fd8)
[10:55:15] [DEBUG] CHandle::GetErrorId - return value: true, error id: '0', error msg: ''
[10:55:15] [DEBUG] mysql_errno: return value: '0' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:605)
[10:55:19] [DEBUG] mysql_format(1, 0x04B4693C, 1024, "SELECT * FROM `MasterAccounts` WHERE `AccountName` = '%e' LIMIT 1") (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:480)
[10:55:19] [DEBUG] CHandle::EscapeString(this=0x57d850, src='Anthony_Hall')
[10:55:19] [DEBUG] CConnection::EscapeString(src='Anthony_Hall', this=0x578560, connection=0x23d2fd8)
[10:55:19] [DEBUG] CHandle::EscapeString - return value: true, escaped string: 'Anthony_Hall'
[10:55:19] [DEBUG] mysql_format: return value: '75' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:480)
[10:55:19] [DEBUG] mysql_tquery(1, "SELECT * FROM `MasterAccounts` WHERE `AccountName` = 'Anthony_Hall' LIMIT 1", "OnMasterDataReceived", "d") (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:481)
[10:55:19] [DEBUG] CCallback::Create(amx=0x29bab48, name='OnMasterDataReceived', format='d', params=0x4b46924, param_offset=5)
[10:55:19] [DEBUG] CCallback::Create - callback index for 'OnMasterDataReceived': 20
[10:55:19] [DEBUG] processing specifier 'd' with parameter index 0
[10:55:19] [DEBUG] retrieved and pushed value '0'
[10:55:19] [INFO] Callback 'OnMasterDataReceived' set up for delayed execution.
[10:55:19] [DEBUG] created delayed callback with 1 parameter
[10:55:19] [DEBUG] CHandle::Execute(this=0x57d850, type=1, query=0x57cee8)
[10:55:19] [DEBUG] CHandle::Execute - return value: true
[10:55:19] [DEBUG] mysql_tquery: return value: '1' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:481)
[10:55:19] [DEBUG] CConnection::Execute(query=0x57cee8, this=0x4d5b020, connection=0x23de6a0)
[10:55:19] [DEBUG] CQuery::Execute(this=0x57cee8, connection=0x23de6a0)
[10:55:19] [INFO] query "SELECT * FROM `MasterAccounts` WHERE `AccountName` = 'Anthony_Hall' LIMIT 1" successfully executed
[10:55:19] [DEBUG] CCallback::Execute(amx=0x29bab48, index=20, num_params=1)
[10:55:19] [INFO] Executing callback 'OnMasterDataReceived' with 1 parameter...
[10:55:19] [DEBUG] processing internal specifier 'c'
[10:55:19] [DEBUG] pushed value '0' onto AMX stack
[10:55:19] [DEBUG] executing AMX callback with index '20'
[10:55:19] [DEBUG] cache_get_row_count(0x04B47940) (E:\SA-MP-DEVELOPMENT\Server\pawno\include\a_mysql.inc:180)
[10:55:19] [DEBUG] cache_get_row_count: return value: '1' (E:\SA-MP-DEVELOPMENT\Server\pawno\include\a_mysql.inc:180)
[10:55:19] [DEBUG] cache_get_value_name(0, "AccountPassword", 0x03A51B1C, 1) (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:488)
[10:55:19] [DEBUG] cache_get_value_name: assigned value: '6E0016F77EA1708F1AF175ACB3915D9A6D73F38BE0090A1412877DD5FD1859E7' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:488)
[10:55:19] [DEBUG] cache_get_value_name: return value: '1' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:488)
[10:55:19] [DEBUG] cache_get_value_name(0, "AccountPasswordSalt", 0x03A51D0C, 1) (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:489)
[10:55:25] [DEBUG] mysql_set_option(1, 0) (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:602)
[10:55:25] [DEBUG] mysql_set_option: return value: '1' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:602)
[10:55:25] [DEBUG] mysql_connect("localhost", "root", "*****", "USRP", 1) (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:604)
[10:55:25] [DEBUG] CHandleManager::Create(this=0x597b28, host='localhost', user='root', pass='****', db='USRP', options=0x597320)
[10:55:25] [INFO] Creating new connection handle...
[10:55:25] [WARNING] mysql_connect: no password specified (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:604)
[10:55:25] [DEBUG] CConnection::CConnection(this=0x59bee0, host='localhost', user='root', passw='****', db='USRP', options=0x597320)
[10:55:25] [DEBUG] CConnection::CConnection - new connection = 0x27c2fd8
[10:55:25] [DEBUG] CConnection::CConnection(this=0x4de8020, host='localhost', user='root', passw='****', db='USRP', options=0x597320)
[10:55:25] [DEBUG] CConnection::CConnection - new connection = 0x27ce6a0
[10:55:25] [DEBUG] CThreadedConnection::WorkerFunc(this=0x4de8020, connection=0x4de8020)
[10:55:25] [DEBUG] CThreadedConnection::CThreadedConnection(this=0x4de8020, connection=0x4de8020)
[10:55:25] [DEBUG] CConnectionPool::CConnectionPool(size=2, this=0x59bb60)
[10:55:25] [DEBUG] CConnection::CConnection(this=0x4f75020, host='localhost', user='root', passw='****', db='USRP', options=0x597320)
[10:55:25] [DEBUG] CConnection::CConnection - new connection = 0x4cfbfb8
[10:55:25] [DEBUG] CThreadedConnection::WorkerFunc(this=0x4f75020, connection=0x4f75020)
[10:55:25] [DEBUG] CThreadedConnection::CThreadedConnection(this=0x4f75020, connection=0x4f75020)
[10:55:25] [DEBUG] CConnection::CConnection(this=0x5147020, host='localhost', user='root', passw='****', db='USRP', options=0x597320)
[10:55:25] [DEBUG] CConnection::CConnection - new connection = 0x4d05148
[10:55:25] [DEBUG] CThreadedConnection::CThreadedConnection(this=0x5147020, connection=0x5147020)
[10:55:25] [INFO] Connection handle with id '1' successfully created.
[10:55:25] [DEBUG] CThreadedConnection::WorkerFunc(this=0x5147020, connection=0x5147020)
[10:55:25] [DEBUG] CHandleManager::Create - new handle = 0x5a2810
[10:55:25] [DEBUG] mysql_connect: return value: '1' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:604)
[10:55:25] [DEBUG] mysql_errno(1) (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:605)
[10:55:25] [DEBUG] CHandle::GetErrorId(this=0x5a2810)
[10:55:25] [DEBUG] CConnection::GetError(this=0x59bee0, connection=0x27c2fd8)
[10:55:25] [DEBUG] CHandle::GetErrorId - return value: true, error id: '0', error msg: ''
[10:55:25] [DEBUG] mysql_errno: return value: '0' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:605)
[10:56:10] [DEBUG] mysql_set_option(1, 0) (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:602)
[10:56:10] [DEBUG] mysql_set_option: return value: '1' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:602)
[10:56:10] [DEBUG] mysql_connect("localhost", "root", "*****", "USRP", 1) (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:604)
[10:56:10] [DEBUG] CHandleManager::Create(this=0x765040, host='localhost', user='root', pass='****', db='USRP', options=0x764ab0)
[10:56:10] [INFO] Creating new connection handle...
[10:56:10] [WARNING] mysql_connect: no password specified (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:604)
[10:56:10] [DEBUG] CConnection::CConnection(this=0x768670, host='localhost', user='root', passw='****', db='USRP', options=0x764ab0)
[10:56:10] [DEBUG] CConnection::CConnection - new connection = 0x2472fd8
[10:56:10] [DEBUG] CConnection::CConnection(this=0x281b020, host='localhost', user='root', passw='****', db='USRP', options=0x764ab0)
[10:56:10] [DEBUG] CConnection::CConnection - new connection = 0x247e6a0
[10:56:10] [DEBUG] CThreadedConnection::WorkerFunc(this=0x281b020, connection=0x281b020)
[10:56:10] [DEBUG] CThreadedConnection::CThreadedConnection(this=0x281b020, connection=0x281b020)
[10:56:10] [DEBUG] CConnectionPool::CConnectionPool(size=2, this=0x768030)
[10:56:10] [DEBUG] CConnection::CConnection(this=0x4fb8020, host='localhost', user='root', passw='****', db='USRP', options=0x764ab0)
[10:56:10] [DEBUG] CConnection::CConnection - new connection = 0x4dcbfb8
[10:56:10] [DEBUG] CThreadedConnection::WorkerFunc(this=0x4fb8020, connection=0x4fb8020)
[10:56:10] [DEBUG] CThreadedConnection::CThreadedConnection(this=0x4fb8020, connection=0x4fb8020)
[10:56:10] [DEBUG] CConnection::CConnection(this=0x5141020, host='localhost', user='root', passw='****', db='USRP', options=0x764ab0)
[10:56:10] [DEBUG] CConnection::CConnection - new connection = 0x4dd5148
[10:56:10] [DEBUG] CThreadedConnection::WorkerFunc(this=0x5141020, connection=0x5141020)
[10:56:10] [DEBUG] CThreadedConnection::CThreadedConnection(this=0x5141020, connection=0x5141020)
[10:56:10] [INFO] Connection handle with id '1' successfully created.
[10:56:10] [DEBUG] CHandleManager::Create - new handle = 0x76c420
[10:56:10] [DEBUG] mysql_connect: return value: '1' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:604)
[10:56:10] [DEBUG] mysql_errno(1) (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:605)
[10:56:10] [DEBUG] CHandle::GetErrorId(this=0x76c420)
[10:56:10] [DEBUG] CConnection::GetError(this=0x768670, connection=0x2472fd8)
[10:56:10] [DEBUG] CHandle::GetErrorId - return value: true, error id: '0', error msg: ''
[10:56:10] [DEBUG] mysql_errno: return value: '0' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:605)
[10:57:01] [DEBUG] mysql_set_option(1, 0) (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:602)
[10:57:01] [DEBUG] mysql_set_option: return value: '1' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:602)
[10:57:01] [DEBUG] mysql_connect("localhost", "root", "*****", "USRP", 1) (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:604)
[10:57:01] [DEBUG] CHandleManager::Create(this=0x7a8f70, host='localhost', user='root', pass='****', db='USRP', options=0x786388)
[10:57:01] [INFO] Creating new connection handle...
[10:57:01] [WARNING] mysql_connect: no password specified (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:604)
[10:57:01] [DEBUG] CConnection::CConnection(this=0x788e48, host='localhost', user='root', passw='****', db='USRP', options=0x786388)
[10:57:01] [DEBUG] CConnection::CConnection - new connection = 0x2b52fa8
[10:57:01] [DEBUG] CConnection::CConnection(this=0x2acd020, host='localhost', user='root', passw='****', db='USRP', options=0x786388)
[10:57:01] [DEBUG] CConnection::CConnection - new connection = 0x2b5e630
[10:57:01] [DEBUG] CThreadedConnection::WorkerFunc(this=0x2acd020, connection=0x2acd020)
[10:57:01] [DEBUG] CThreadedConnection::CThreadedConnection(this=0x2acd020, connection=0x2acd020)
[10:57:01] [DEBUG] CConnectionPool::CConnectionPool(size=2, this=0x788cc8)
[10:57:01] [DEBUG] CConnection::CConnection(this=0x4f71020, host='localhost', user='root', passw='****', db='USRP', options=0x786388)
[10:57:01] [DEBUG] CConnection::CConnection - new connection = 0x4d8c7e0
[10:57:01] [DEBUG] CThreadedConnection::WorkerFunc(this=0x4f71020, connection=0x4f71020)
[10:57:01] [DEBUG] CThreadedConnection::CThreadedConnection(this=0x4f71020, connection=0x4f71020)
[10:57:01] [DEBUG] CConnection::CConnection(this=0x514e020, host='localhost', user='root', passw='****', db='USRP', options=0x786388)
[10:57:01] [DEBUG] CConnection::CConnection - new connection = 0x4d950b0
[10:57:01] [DEBUG] CThreadedConnection::WorkerFunc(this=0x514e020, connection=0x514e020)
[10:57:01] [DEBUG] CThreadedConnection::CThreadedConnection(this=0x514e020, connection=0x514e020)
[10:57:01] [INFO] Connection handle with id '1' successfully created.
[10:57:01] [DEBUG] CHandleManager::Create - new handle = 0x78f2f0
[10:57:01] [DEBUG] mysql_connect: return value: '1' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:604)
[10:57:01] [DEBUG] mysql_errno(1) (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:605)
[10:57:01] [DEBUG] CHandle::GetErrorId(this=0x78f2f0)
[10:57:01] [DEBUG] CConnection::GetError(this=0x788e48, connection=0x2b52fa8)
[10:57:01] [DEBUG] CHandle::GetErrorId - return value: true, error id: '0', error msg: ''
[10:57:01] [DEBUG] mysql_errno: return value: '0' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:605)
[10:57:05] [DEBUG] mysql_format(1, 0x04C6793C, 1024, "SELECT * FROM `MasterAccounts` WHERE `AccountName` = '%e' LIMIT 1") (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:480)
[10:57:05] [DEBUG] CHandle::EscapeString(this=0x78f2f0, src='Anthony_Hall')
[10:57:05] [DEBUG] CConnection::EscapeString(src='Anthony_Hall', this=0x788e48, connection=0x2b52fa8)
[10:57:05] [DEBUG] CHandle::EscapeString - return value: true, escaped string: 'Anthony_Hall'
[10:57:05] [DEBUG] mysql_format: return value: '75' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:480)
[10:57:05] [DEBUG] mysql_tquery(1, "SELECT * FROM `MasterAccounts` WHERE `AccountName` = 'Anthony_Hall' LIMIT 1", "OnMasterDataReceived", "d") (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:481)
[10:57:05] [DEBUG] CCallback::Create(amx=0x2a4aeb0, name='OnMasterDataReceived', format='d', params=0x4c67924, param_offset=5)
[10:57:05] [DEBUG] CCallback::Create - callback index for 'OnMasterDataReceived': 20
[10:57:05] [DEBUG] processing specifier 'd' with parameter index 0
[10:57:05] [DEBUG] retrieved and pushed value '0'
[10:57:05] [INFO] Callback 'OnMasterDataReceived' set up for delayed execution.
[10:57:05] [DEBUG] created delayed callback with 1 parameter
[10:57:05] [DEBUG] CHandle::Execute(this=0x78f2f0, type=1, query=0x791ac0)
[10:57:05] [DEBUG] CHandle::Execute - return value: true
[10:57:05] [DEBUG] mysql_tquery: return value: '1' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:481)
[10:57:05] [DEBUG] CConnection::Execute(query=0x791ac0, this=0x2acd020, connection=0x2b5e630)
[10:57:05] [DEBUG] CQuery::Execute(this=0x791ac0, connection=0x2b5e630)
[10:57:05] [INFO] query "SELECT * FROM `MasterAccounts` WHERE `AccountName` = 'Anthony_Hall' LIMIT 1" successfully executed
[10:57:05] [DEBUG] CCallback::Execute(amx=0x2a4aeb0, index=20, num_params=1)
[10:57:05] [INFO] Executing callback 'OnMasterDataReceived' with 1 parameter...
[10:57:05] [DEBUG] processing internal specifier 'c'
[10:57:05] [DEBUG] pushed value '0' onto AMX stack
[10:57:05] [DEBUG] executing AMX callback with index '20'
[10:57:05] [DEBUG] cache_get_row_count(0x04C68940) (E:\SA-MP-DEVELOPMENT\Server\pawno\include\a_mysql.inc:180)
[10:57:05] [DEBUG] cache_get_row_count: return value: '1' (E:\SA-MP-DEVELOPMENT\Server\pawno\include\a_mysql.inc:180)
[10:57:05] [DEBUG] cache_get_value_name(0, "AccountPassword", 0x03B72B1C, 1) (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:488)
[10:57:05] [DEBUG] cache_get_value_name: assigned value: '6E0016F77EA1708F1AF175ACB3915D9A6D73F38BE0090A1412877DD5FD1859E7' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:488)
[10:57:05] [DEBUG] cache_get_value_name: return value: '1' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:488)
[10:57:05] [DEBUG] cache_get_value_name(0, "AccountPasswordSalt", 0x03B72D0C, 1) (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:489)
[10:58:54] [DEBUG] mysql_set_option(1, 0) (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:602)
[10:58:54] [DEBUG] mysql_set_option: return value: '1' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:602)
[10:58:54] [DEBUG] mysql_connect("localhost", "root", "*****", "USRP", 1) (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:604)
[10:58:54] [DEBUG] CHandleManager::Create(this=0x846ee0, host='localhost', user='root', pass='****', db='USRP', options=0x825938)
[10:58:54] [INFO] Creating new connection handle...
[10:58:54] [WARNING] mysql_connect: no password specified (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:604)
[10:58:54] [DEBUG] CConnection::CConnection(this=0x828b90, host='localhost', user='root', passw='****', db='USRP', options=0x825938)
[10:58:54] [DEBUG] CConnection::CConnection - new connection = 0x2452fd8
[10:58:54] [DEBUG] CConnection::CConnection(this=0x24df020, host='localhost', user='root', passw='****', db='USRP', options=0x825938)
[10:58:54] [DEBUG] CConnection::CConnection - new connection = 0x245e6a0
[10:58:54] [DEBUG] CThreadedConnection::WorkerFunc(this=0x24df020, connection=0x24df020)
[10:58:54] [DEBUG] CThreadedConnection::CThreadedConnection(this=0x24df020, connection=0x24df020)
[10:58:54] [DEBUG] CConnectionPool::CConnectionPool(size=2, this=0x828f90)
[10:58:54] [DEBUG] CConnection::CConnection(this=0x4f49020, host='localhost', user='root', passw='****', db='USRP', options=0x825938)
[10:58:54] [DEBUG] CConnection::CConnection - new connection = 0x4d1bfb8
[10:58:54] [DEBUG] CThreadedConnection::WorkerFunc(this=0x4f49020, connection=0x4f49020)
[10:58:54] [DEBUG] CThreadedConnection::CThreadedConnection(this=0x4f49020, connection=0x4f49020)
[10:58:54] [DEBUG] CConnection::CConnection(this=0x511e020, host='localhost', user='root', passw='****', db='USRP', options=0x825938)
[10:58:54] [DEBUG] CConnection::CConnection - new connection = 0x4d25148
[10:58:54] [DEBUG] CThreadedConnection::WorkerFunc(this=0x511e020, connection=0x511e020)
[10:58:54] [DEBUG] CThreadedConnection::CThreadedConnection(this=0x511e020, connection=0x511e020)
[10:58:54] [INFO] Connection handle with id '1' successfully created.
[10:58:54] [DEBUG] CHandleManager::Create - new handle = 0x82d530
[10:58:54] [DEBUG] mysql_connect: return value: '1' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:604)
[10:58:54] [DEBUG] mysql_errno(1) (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:605)
[10:58:54] [DEBUG] CHandle::GetErrorId(this=0x82d530)
[10:58:54] [DEBUG] CConnection::GetError(this=0x828b90, connection=0x2452fd8)
[10:58:54] [DEBUG] CHandle::GetErrorId - return value: true, error id: '0', error msg: ''
[10:58:54] [DEBUG] mysql_errno: return value: '0' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:605)
[10:59:17] [DEBUG] mysql_format(1, 0x04BF493C, 1024, "SELECT * FROM `MasterAccounts` WHERE `AccountName` = '%e' LIMIT 1") (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:480)
[10:59:17] [DEBUG] CHandle::EscapeString(this=0x82d530, src='TheOnlyDroid')
[10:59:17] [DEBUG] CConnection::EscapeString(src='TheOnlyDroid', this=0x828b90, connection=0x2452fd8)
[10:59:17] [DEBUG] CHandle::EscapeString - return value: true, escaped string: 'TheOnlyDroid'
[10:59:17] [DEBUG] mysql_format: return value: '75' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:480)
[10:59:17] [DEBUG] mysql_tquery(1, "SELECT * FROM `MasterAccounts` WHERE `AccountName` = 'TheOnlyDroid' LIMIT 1", "OnMasterDataReceived", "d") (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:481)
[10:59:17] [DEBUG] CCallback::Create(amx=0x2a5ab48, name='OnMasterDataReceived', format='d', params=0x4bf4924, param_offset=5)
[10:59:17] [DEBUG] CCallback::Create - callback index for 'OnMasterDataReceived': 20
[10:59:17] [DEBUG] processing specifier 'd' with parameter index 0
[10:59:17] [DEBUG] retrieved and pushed value '0'
[10:59:17] [INFO] Callback 'OnMasterDataReceived' set up for delayed execution.
[10:59:17] [DEBUG] created delayed callback with 1 parameter
[10:59:17] [DEBUG] CHandle::Execute(this=0x82d530, type=1, query=0x82cad8)
[10:59:17] [DEBUG] CHandle::Execute - return value: true
[10:59:17] [DEBUG] mysql_tquery: return value: '1' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:481)
[10:59:17] [DEBUG] CConnection::Execute(query=0x82cad8, this=0x24df020, connection=0x245e6a0)
[10:59:17] [DEBUG] CQuery::Execute(this=0x82cad8, connection=0x245e6a0)
[10:59:17] [INFO] query "SELECT * FROM `MasterAccounts` WHERE `AccountName` = 'TheOnlyDroid' LIMIT 1" successfully executed
[10:59:17] [DEBUG] CCallback::Execute(amx=0x2a5ab48, index=20, num_params=1)
[10:59:17] [INFO] Executing callback 'OnMasterDataReceived' with 1 parameter...
[10:59:17] [DEBUG] processing internal specifier 'c'
[10:59:17] [DEBUG] pushed value '0' onto AMX stack
[10:59:17] [DEBUG] executing AMX callback with index '20'
[10:59:17] [DEBUG] cache_get_row_count(0x04BF5940) (E:\SA-MP-DEVELOPMENT\Server\pawno\include\a_mysql.inc:180)
[10:59:17] [DEBUG] cache_get_row_count: return value: '1' (E:\SA-MP-DEVELOPMENT\Server\pawno\include\a_mysql.inc:180)
[10:59:17] [DEBUG] AMX callback executed with error '0'
[10:59:17] [INFO] Callback successfully executed.
[10:59:21] [DEBUG] mysql_format(1, 0x04BF4868, 1024, "INSERT INTO `MasterAccounts` (`AccountReference`,`AccountName`,`AccountPassword`,`AccountPasswordSalt`) VALUES ('%e','%e', '%s', '%e')") (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:589)
[10:59:21] [DEBUG] CHandle::EscapeString(this=0x82d530, src='KJAHDDKQ')
[10:59:21] [DEBUG] CConnection::EscapeString(src='KJAHDDKQ', this=0x828b90, connection=0x2452fd8)
[10:59:21] [DEBUG] CHandle::EscapeString - return value: true, escaped string: 'KJAHDDKQ'
[10:59:21] [DEBUG] CHandle::EscapeString(this=0x82d530, src='TheOnlyDroid')
[10:59:21] [DEBUG] CConnection::EscapeString(src='TheOnlyDroid', this=0x828b90, connection=0x2452fd8)
[10:59:21] [DEBUG] CHandle::EscapeString - return value: true, escaped string: 'TheOnlyDroid'
[10:59:21] [DEBUG] CHandle::EscapeString(this=0x82d530, src='P&)7#uUebG1WXW{K|ljs{'(,')
[10:59:21] [DEBUG] CConnection::EscapeString(src='P&)7#uUebG1WXW{K|ljs{'(,', this=0x828b90, connection=0x2452fd8)
[10:59:21] [DEBUG] CHandle::EscapeString - return value: true, escaped string: 'P&)7#uUebG1WXW{K|ljs{\'(,'
[10:59:21] [DEBUG] mysql_format: return value: '235' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:589)
[10:59:21] [DEBUG] mysql_tquery(1, "INSERT INTO `MasterAccounts` (`AccountReference`,`AccountName`,`AccountPassword`,`AccountPasswordSalt`) VALUES ('KJAHDDKQ','TheOnlyDroid', '92A40FC4C66AA74BDDB7DDA4D52531A0196467410648F7EE9BDBA9051AADA64C', 'P&)7#uUebG1WXW{K|ljs{\'(,')", "OnPlayerRegisterAccount", "d") (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:590)
[10:59:21] [DEBUG] CCallback::Create(amx=0x2a5ab48, name='OnPlayerRegisterAccount', format='d', params=0x4bf4850, param_offset=5)
[10:59:21] [DEBUG] CCallback::Create - callback index for 'OnPlayerRegisterAccount': 24
[10:59:21] [DEBUG] processing specifier 'd' with parameter index 0
[10:59:21] [DEBUG] retrieved and pushed value '0'
[10:59:21] [INFO] Callback 'OnPlayerRegisterAccount' set up for delayed execution.
[10:59:21] [DEBUG] created delayed callback with 1 parameter
[10:59:21] [DEBUG] CHandle::Execute(this=0x82d530, type=1, query=0x82f248)
[10:59:21] [DEBUG] CHandle::Execute - return value: true
[10:59:21] [DEBUG] mysql_tquery: return value: '1' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:590)
[10:59:21] [DEBUG] CConnection::Execute(query=0x82f248, this=0x24df020, connection=0x245e6a0)
[10:59:21] [DEBUG] CQuery::Execute(this=0x82f248, connection=0x245e6a0)
[10:59:21] [INFO] query "INSERT INTO `MasterAccounts` (`AccountReference`,`AccountName`,`AccountPassword`,`AccountPasswordSalt`) VALUES ('KJAHDDKQ','TheOnlyDroid', '92A40FC4C66AA74BDDB7DDA4D52531A0196467410648F7EE9BDBA9051AADA64C', 'P&)7#uUebG1WXW{K|ljs{\'(,')" successfully executed
[10:59:21] [DEBUG] CCallback::Execute(amx=0x2a5ab48, index=24, num_params=1)
[10:59:21] [INFO] Executing callback 'OnPlayerRegisterAccount' with 1 parameter...
[10:59:21] [DEBUG] processing internal specifier 'c'
[10:59:21] [DEBUG] pushed value '0' onto AMX stack
[10:59:21] [DEBUG] executing AMX callback with index '24'
[10:59:21] [DEBUG] AMX callback executed with error '0'
[10:59:21] [INFO] Callback successfully executed.
[10:59:50] [DEBUG] mysql_format(1, 0x04BF493C, 1024, "SELECT * FROM `MasterAccounts` WHERE `AccountName` = '%e' LIMIT 1") (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:480)
[10:59:50] [DEBUG] CHandle::EscapeString(this=0x82d530, src='TheOnlyDroid')
[10:59:50] [DEBUG] CConnection::EscapeString(src='TheOnlyDroid', this=0x828b90, connection=0x2452fd8)
[10:59:50] [DEBUG] CHandle::EscapeString - return value: true, escaped string: 'TheOnlyDroid'
[10:59:50] [DEBUG] mysql_format: return value: '75' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:480)
[10:59:50] [DEBUG] mysql_tquery(1, "SELECT * FROM `MasterAccounts` WHERE `AccountName` = 'TheOnlyDroid' LIMIT 1", "OnMasterDataReceived", "d") (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:481)
[10:59:50] [DEBUG] CCallback::Create(amx=0x2a5ab48, name='OnMasterDataReceived', format='d', params=0x4bf4924, param_offset=5)
[10:59:50] [DEBUG] CCallback::Create - callback index for 'OnMasterDataReceived': 20
[10:59:50] [DEBUG] processing specifier 'd' with parameter index 0
[10:59:50] [DEBUG] retrieved and pushed value '0'
[10:59:50] [INFO] Callback 'OnMasterDataReceived' set up for delayed execution.
[10:59:50] [DEBUG] created delayed callback with 1 parameter
[10:59:50] [DEBUG] CHandle::Execute(this=0x82d530, type=1, query=0x82cad8)
[10:59:50] [DEBUG] CHandle::Execute - return value: true
[10:59:50] [DEBUG] mysql_tquery: return value: '1' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:481)
[10:59:50] [DEBUG] CConnection::Execute(query=0x82cad8, this=0x24df020, connection=0x245e6a0)
[10:59:50] [DEBUG] CQuery::Execute(this=0x82cad8, connection=0x245e6a0)
[10:59:50] [INFO] query "SELECT * FROM `MasterAccounts` WHERE `AccountName` = 'TheOnlyDroid' LIMIT 1" successfully executed
[10:59:50] [DEBUG] CCallback::Execute(amx=0x2a5ab48, index=20, num_params=1)
[10:59:50] [INFO] Executing callback 'OnMasterDataReceived' with 1 parameter...
[10:59:50] [DEBUG] processing internal specifier 'c'
[10:59:50] [DEBUG] pushed value '0' onto AMX stack
[10:59:50] [DEBUG] executing AMX callback with index '20'
[10:59:50] [DEBUG] cache_get_row_count(0x04BF5940) (E:\SA-MP-DEVELOPMENT\Server\pawno\include\a_mysql.inc:180)
[10:59:50] [DEBUG] cache_get_row_count: return value: '1' (E:\SA-MP-DEVELOPMENT\Server\pawno\include\a_mysql.inc:180)
[10:59:50] [DEBUG] cache_get_value_name(0, "AccountPassword", 0x03AFFB1C, 1) (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:488)
[10:59:50] [DEBUG] cache_get_value_name: assigned value: '92A40FC4C66AA74BDDB7DDA4D52531A0196467410648F7EE9BDBA9051AADA64C' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:488)
[10:59:50] [DEBUG] cache_get_value_name: return value: '1' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:488)
[10:59:50] [DEBUG] cache_get_value_name(0, "AccountPasswordSalt", 0x03AFFD0C, 1) (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:489)
[11:02:13] [DEBUG] mysql_set_option(1, 0) (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:595)
[11:02:13] [DEBUG] mysql_set_option: return value: '1' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:595)
[11:02:13] [DEBUG] mysql_connect("localhost", "root", "*****", "USRP", 1) (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:597)
[11:02:13] [DEBUG] CHandleManager::Create(this=0x795ba0, host='localhost', user='root', pass='****', db='USRP', options=0x7752a0)
[11:02:13] [INFO] Creating new connection handle...
[11:02:13] [WARNING] mysql_connect: no password specified (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:597)
[11:02:13] [DEBUG] CConnection::CConnection(this=0x778c40, host='localhost', user='root', passw='****', db='USRP', options=0x7752a0)
[11:02:13] [DEBUG] CConnection::CConnection - new connection = 0x2992fd8
[11:02:13] [DEBUG] CConnection::CConnection(this=0x2aa9020, host='localhost', user='root', passw='****', db='USRP', options=0x7752a0)
[11:02:13] [DEBUG] CConnection::CConnection - new connection = 0x299e6a0
[11:02:13] [DEBUG] CThreadedConnection::WorkerFunc(this=0x2aa9020, connection=0x2aa9020)
[11:02:13] [DEBUG] CThreadedConnection::CThreadedConnection(this=0x2aa9020, connection=0x2aa9020)
[11:02:13] [DEBUG] CConnectionPool::CConnectionPool(size=2, this=0x7788c0)
[11:02:13] [DEBUG] CConnection::CConnection(this=0x4fac020, host='localhost', user='root', passw='****', db='USRP', options=0x7752a0)
[11:02:13] [DEBUG] CConnection::CConnection - new connection = 0x4dbbfb8
[11:02:13] [DEBUG] CThreadedConnection::WorkerFunc(this=0x4fac020, connection=0x4fac020)
[11:02:13] [DEBUG] CThreadedConnection::CThreadedConnection(this=0x4fac020, connection=0x4fac020)
[11:02:13] [DEBUG] CConnection::CConnection(this=0x5139020, host='localhost', user='root', passw='****', db='USRP', options=0x7752a0)
[11:02:13] [DEBUG] CConnection::CConnection - new connection = 0x4dc5148
[11:02:13] [DEBUG] CThreadedConnection::WorkerFunc(this=0x5139020, connection=0x5139020)
[11:02:13] [DEBUG] CThreadedConnection::CThreadedConnection(this=0x5139020, connection=0x5139020)
[11:02:13] [INFO] Connection handle with id '1' successfully created.
[11:02:13] [DEBUG] CHandleManager::Create - new handle = 0x77d870
[11:02:13] [DEBUG] mysql_connect: return value: '1' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:597)
[11:02:13] [DEBUG] mysql_errno(1) (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:598)
[11:02:13] [DEBUG] CHandle::GetErrorId(this=0x77d870)
[11:02:13] [DEBUG] CConnection::GetError(this=0x778c40, connection=0x2992fd8)
[11:02:13] [DEBUG] CHandle::GetErrorId - return value: true, error id: '0', error msg: ''
[11:02:13] [DEBUG] mysql_errno: return value: '0' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:598)
[11:02:35] [DEBUG] mysql_format(1, 0x04C92804, 1024, "SELECT * FROM `MasterAccounts` WHERE `AccountName` = '%e' LIMIT 1") (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:480)
[11:02:35] [DEBUG] CHandle::EscapeString(this=0x77d870, src='TheOnlyDroid')
[11:02:35] [DEBUG] CConnection::EscapeString(src='TheOnlyDroid', this=0x778c40, connection=0x2992fd8)
[11:02:35] [DEBUG] CHandle::EscapeString - return value: true, escaped string: 'TheOnlyDroid'
[11:02:35] [DEBUG] mysql_format: return value: '75' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:480)
[11:02:35] [DEBUG] mysql_tquery(1, "SELECT * FROM `MasterAccounts` WHERE `AccountName` = 'TheOnlyDroid' LIMIT 1", "OnMasterDataReceived", "d") (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:481)
[11:02:35] [DEBUG] CCallback::Create(amx=0x2a2ab48, name='OnMasterDataReceived', format='d', params=0x4c927ec, param_offset=5)
[11:02:35] [DEBUG] CCallback::Create - callback index for 'OnMasterDataReceived': 20
[11:02:35] [DEBUG] processing specifier 'd' with parameter index 0
[11:02:35] [DEBUG] retrieved and pushed value '0'
[11:02:35] [INFO] Callback 'OnMasterDataReceived' set up for delayed execution.
[11:02:35] [DEBUG] created delayed callback with 1 parameter
[11:02:35] [DEBUG] CHandle::Execute(this=0x77d870, type=1, query=0x7834b0)
[11:02:35] [DEBUG] CHandle::Execute - return value: true
[11:02:35] [DEBUG] mysql_tquery: return value: '1' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:481)
[11:02:35] [DEBUG] CConnection::Execute(query=0x7834b0, this=0x2aa9020, connection=0x299e6a0)
[11:02:35] [DEBUG] CQuery::Execute(this=0x7834b0, connection=0x299e6a0)
[11:02:35] [INFO] query "SELECT * FROM `MasterAccounts` WHERE `AccountName` = 'TheOnlyDroid' LIMIT 1" successfully executed
[11:02:35] [DEBUG] CCallback::Execute(amx=0x2a2ab48, index=20, num_params=1)
[11:02:35] [INFO] Executing callback 'OnMasterDataReceived' with 1 parameter...
[11:02:35] [DEBUG] processing internal specifier 'c'
[11:02:35] [DEBUG] pushed value '0' onto AMX stack
[11:02:35] [DEBUG] executing AMX callback with index '20'
[11:02:35] [DEBUG] cache_get_row_count(0x04C93808) (E:\SA-MP-DEVELOPMENT\Server\pawno\include\a_mysql.inc:180)
[11:02:35] [DEBUG] cache_get_row_count: return value: '1' (E:\SA-MP-DEVELOPMENT\Server\pawno\include\a_mysql.inc:180)
[11:02:35] [DEBUG] cache_get_value_name(0, "AccountPassword", 0x03B9DA34, 1) (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:488)
[11:02:35] [DEBUG] cache_get_value_name: assigned value: '92A40FC4C66AA74BDDB7DDA4D52531A0196467410648F7EE9BDBA9051AADA64C' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:488)
[11:02:35] [DEBUG] cache_get_value_name: return value: '1' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:488)
[11:02:35] [DEBUG] cache_save() (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:491)
[11:02:35] [DEBUG] cache_save: return value: '1' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:491)
[11:02:35] [DEBUG] AMX callback executed with error '0'
[11:02:35] [INFO] Callback successfully executed.
[11:02:39] [DEBUG] cache_set_active(1) (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:550)
[11:02:39] [DEBUG] cache_set_active: return value: '1' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:550)
[11:02:39] [DEBUG] cache_get_value_name_int(0, "AccountID", 0x03B9D9B0) (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:506)
[11:02:39] [DEBUG] cache_get_value_name_int: assigned value: '3' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:506)
[11:02:39] [DEBUG] cache_get_value_name_int: return value: '1' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:506)
[11:02:39] [DEBUG] cache_get_value_name_int(0, "AccountStaffLevel", 0x03B9DC84) (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:507)
[11:02:39] [DEBUG] cache_get_value_name_int: assigned value: '0' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:507)
[11:02:39] [DEBUG] cache_get_value_name_int: return value: '1' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:507)
[11:02:39] [DEBUG] cache_get_value_name_int(0, "AccountModeratorLevel", 0x03B9DC88) (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:508)
[11:02:39] [DEBUG] cache_get_value_name_int: assigned value: '0' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:508)
[11:02:39] [DEBUG] cache_get_value_name_int: return value: '1' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:508)
[11:02:39] [DEBUG] cache_get_value_name_int(0, "AccountJailed", 0x03B9DC8C) (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:509)
[11:02:39] [DEBUG] cache_get_value_name_int: assigned value: '0' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:509)
[11:02:39] [DEBUG] cache_get_value_name_int: return value: '1' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:509)
[11:02:39] [DEBUG] cache_get_value_name_int(0, "AccountJailTime", 0x03B9DC90) (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:510)
[11:02:39] [DEBUG] cache_get_value_name_int: assigned value: '0' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:510)
[11:02:39] [DEBUG] cache_get_value_name_int: return value: '1' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:510)
[11:02:39] [DEBUG] cache_delete(1) (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:553)
[11:02:39] [DEBUG] cache_delete: return value: '1' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:553)
[11:05:36] [DEBUG] mysql_format(1, 0x04C92804, 1024, "SELECT * FROM `MasterAccounts` WHERE `AccountName` = '%e' LIMIT 1") (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:480)
[11:05:36] [DEBUG] CHandle::EscapeString(this=0x77d870, src='TheOnlyDroid')
[11:05:36] [DEBUG] CConnection::EscapeString(src='TheOnlyDroid', this=0x778c40, connection=0x2992fd8)
[11:05:36] [DEBUG] CHandle::EscapeString - return value: true, escaped string: 'TheOnlyDroid'
[11:05:36] [DEBUG] mysql_format: return value: '75' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:480)
[11:05:36] [DEBUG] mysql_tquery(1, "SELECT * FROM `MasterAccounts` WHERE `AccountName` = 'TheOnlyDroid' LIMIT 1", "OnMasterDataReceived", "d") (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:481)
[11:05:36] [DEBUG] CCallback::Create(amx=0x2a2ab48, name='OnMasterDataReceived', format='d', params=0x4c927ec, param_offset=5)
[11:05:36] [DEBUG] CCallback::Create - callback index for 'OnMasterDataReceived': 20
[11:05:36] [DEBUG] processing specifier 'd' with parameter index 0
[11:05:36] [DEBUG] retrieved and pushed value '0'
[11:05:36] [INFO] Callback 'OnMasterDataReceived' set up for delayed execution.
[11:05:36] [DEBUG] created delayed callback with 1 parameter
[11:05:36] [DEBUG] CHandle::Execute(this=0x77d870, type=1, query=0x7761e0)
[11:05:36] [DEBUG] CHandle::Execute - return value: true
[11:05:36] [DEBUG] mysql_tquery: return value: '1' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:481)
[11:05:36] [DEBUG] CConnection::Execute(query=0x7761e0, this=0x2aa9020, connection=0x299e6a0)
[11:05:36] [DEBUG] CQuery::Execute(this=0x7761e0, connection=0x299e6a0)
[11:05:36] [INFO] query "SELECT * FROM `MasterAccounts` WHERE `AccountName` = 'TheOnlyDroid' LIMIT 1" successfully executed
[11:05:36] [DEBUG] CCallback::Execute(amx=0x2a2ab48, index=20, num_params=1)
[11:05:36] [INFO] Executing callback 'OnMasterDataReceived' with 1 parameter...
[11:05:36] [DEBUG] processing internal specifier 'c'
[11:05:36] [DEBUG] pushed value '0' onto AMX stack
[11:05:36] [DEBUG] executing AMX callback with index '20'
[11:05:36] [DEBUG] cache_get_row_count(0x04C93808) (E:\SA-MP-DEVELOPMENT\Server\pawno\include\a_mysql.inc:180)
[11:05:36] [DEBUG] cache_get_row_count: return value: '1' (E:\SA-MP-DEVELOPMENT\Server\pawno\include\a_mysql.inc:180)
[11:05:36] [DEBUG] AMX callback executed with error '0'
[11:05:36] [INFO] Callback successfully executed.
[11:05:40] [DEBUG] mysql_format(1, 0x04C92730, 1024, "INSERT INTO `MasterAccounts` (`AccountReference`,`AccountName`,`AccountPassword`,`AccountPasswordSalt`) VALUES ('%e','%e', '%s', '%e')") (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:582)
[11:05:40] [DEBUG] CHandle::EscapeString(this=0x77d870, src='KJAHDDKQ')
[11:05:40] [DEBUG] CConnection::EscapeString(src='KJAHDDKQ', this=0x778c40, connection=0x2992fd8)
[11:05:40] [DEBUG] CHandle::EscapeString - return value: true, escaped string: 'KJAHDDKQ'
[11:05:40] [DEBUG] CHandle::EscapeString(this=0x77d870, src='TheOnlyDroid')
[11:05:40] [DEBUG] CConnection::EscapeString(src='TheOnlyDroid', this=0x778c40, connection=0x2992fd8)
[11:05:40] [DEBUG] CHandle::EscapeString - return value: true, escaped string: 'TheOnlyDroid'
[11:05:40] [DEBUG] CHandle::EscapeString(this=0x77d870, src='-U'OlDW"2{&mmMW,})CG!K4~')
[11:05:40] [DEBUG] CConnection::EscapeString(src='-U'OlDW"2{&mmMW,})CG!K4~', this=0x778c40, connection=0x2992fd8)
[11:05:40] [DEBUG] CHandle::EscapeString - return value: true, escaped string: '-U\'OlDW\"2{&mmMW,})CG!K4~'
[11:05:40] [DEBUG] mysql_format: return value: '236' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:582)
[11:05:40] [DEBUG] mysql_tquery(1, "INSERT INTO `MasterAccounts` (`AccountReference`,`AccountName`,`AccountPassword`,`AccountPasswordSalt`) VALUES ('KJAHDDKQ','TheOnlyDroid', 'F3D2231A3D440B4F83CE3781439F3C40C5794866ECCDE83F6860BCB86B0AAB5B', '-U\'OlDW\"2{&mmMW,})CG!K4~')", "OnPlayerRegisterAccount", "d") (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:583)
[11:05:40] [DEBUG] CCallback::Create(amx=0x2a2ab48, name='OnPlayerRegisterAccount', format='d', params=0x4c92718, param_offset=5)
[11:05:40] [DEBUG] CCallback::Create - callback index for 'OnPlayerRegisterAccount': 24
[11:05:40] [DEBUG] processing specifier 'd' with parameter index 0
[11:05:40] [DEBUG] retrieved and pushed value '0'
[11:05:40] [INFO] Callback 'OnPlayerRegisterAccount' set up for delayed execution.
[11:05:40] [DEBUG] created delayed callback with 1 parameter
[11:05:40] [DEBUG] CHandle::Execute(this=0x77d870, type=1, query=0x776298)
[11:05:40] [DEBUG] CHandle::Execute - return value: true
[11:05:40] [DEBUG] mysql_tquery: return value: '1' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:583)
[11:05:40] [DEBUG] CConnection::Execute(query=0x776298, this=0x2aa9020, connection=0x299e6a0)
[11:05:40] [DEBUG] CQuery::Execute(this=0x776298, connection=0x299e6a0)
[11:05:40] [INFO] query "INSERT INTO `MasterAccounts` (`AccountReference`,`AccountName`,`AccountPassword`,`AccountPasswordSalt`) VALUES ('KJAHDDKQ','TheOnlyDroid', 'F3D2231A3D440B4F83CE3781439F3C40C5794866ECCDE83F6860BCB86B0AAB5B', '-U\'OlDW\"2{&mmMW,})CG!K4~')" successfully executed
[11:05:40] [DEBUG] CCallback::Execute(amx=0x2a2ab48, index=24, num_params=1)
[11:05:40] [INFO] Executing callback 'OnPlayerRegisterAccount' with 1 parameter...
[11:05:40] [DEBUG] processing internal specifier 'c'
[11:05:40] [DEBUG] pushed value '0' onto AMX stack
[11:05:40] [DEBUG] executing AMX callback with index '24'
[11:05:40] [DEBUG] AMX callback executed with error '0'
[11:05:40] [INFO] Callback successfully executed.
[11:06:26] [DEBUG] mysql_set_option(1, 0) (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:595)
[11:06:26] [DEBUG] mysql_set_option: return value: '1' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:595)
[11:06:26] [DEBUG] mysql_connect("localhost", "root", "*****", "USRP", 1) (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:597)
[11:06:26] [DEBUG] CHandleManager::Create(this=0x6e7dd8, host='localhost', user='root', pass='****', db='USRP', options=0x6c52b0)
[11:06:26] [INFO] Creating new connection handle...
[11:06:26] [WARNING] mysql_connect: no password specified (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:597)
[11:06:26] [DEBUG] CConnection::CConnection(this=0x6c8340, host='localhost', user='root', passw='****', db='USRP', options=0x6c52b0)
[11:06:26] [DEBUG] CConnection::CConnection - new connection = 0x2782fd8
[11:06:26] [DEBUG] CConnection::CConnection(this=0x2a0b020, host='localhost', user='root', passw='****', db='USRP', options=0x6c52b0)
[11:06:26] [DEBUG] CConnection::CConnection - new connection = 0x278e6a0
[11:06:26] [DEBUG] CThreadedConnection::WorkerFunc(this=0x2a0b020, connection=0x2a0b020)
[11:06:26] [DEBUG] CThreadedConnection::CThreadedConnection(this=0x2a0b020, connection=0x2a0b020)
[11:06:26] [DEBUG] CConnectionPool::CConnectionPool(size=2, this=0x6c8080)
[11:06:26] [DEBUG] CConnection::CConnection(this=0x4f2c020, host='localhost', user='root', passw='****', db='USRP', options=0x6c52b0)
[11:06:26] [DEBUG] CConnection::CConnection - new connection = 0x4cdbfb8
[11:06:26] [DEBUG] CThreadedConnection::WorkerFunc(this=0x4f2c020, connection=0x4f2c020)
[11:06:26] [DEBUG] CThreadedConnection::CThreadedConnection(this=0x4f2c020, connection=0x4f2c020)
[11:06:26] [DEBUG] CConnection::CConnection(this=0x50ff020, host='localhost', user='root', passw='****', db='USRP', options=0x6c52b0)
[11:06:26] [DEBUG] CConnection::CConnection - new connection = 0x4ce5148
[11:06:26] [DEBUG] CThreadedConnection::WorkerFunc(this=0x50ff020, connection=0x50ff020)
[11:06:26] [DEBUG] CThreadedConnection::CThreadedConnection(this=0x50ff020, connection=0x50ff020)
[11:06:26] [INFO] Connection handle with id '1' successfully created.
[11:06:26] [DEBUG] CHandleManager::Create - new handle = 0x6ce4a0
[11:06:26] [DEBUG] mysql_connect: return value: '1' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:597)
[11:06:26] [DEBUG] mysql_errno(1) (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:598)
[11:06:26] [DEBUG] CHandle::GetErrorId(this=0x6ce4a0)
[11:06:26] [DEBUG] CConnection::GetError(this=0x6c8340, connection=0x2782fd8)
[11:06:26] [DEBUG] CHandle::GetErrorId - return value: true, error id: '0', error msg: ''
[11:06:26] [DEBUG] mysql_errno: return value: '0' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:598)
[11:07:01] [DEBUG] mysql_format(1, 0x04BBDD5C, 1024, "SELECT * FROM `MasterAccounts` WHERE `AccountName` = '%e' LIMIT 1") (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:480)
[11:07:01] [DEBUG] CHandle::EscapeString(this=0x6ce4a0, src='TheOnlyDroid')
[11:07:01] [DEBUG] CConnection::EscapeString(src='TheOnlyDroid', this=0x6c8340, connection=0x2782fd8)
[11:07:01] [DEBUG] CHandle::EscapeString - return value: true, escaped string: 'TheOnlyDroid'
[11:07:01] [DEBUG] mysql_format: return value: '75' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:480)
[11:07:01] [DEBUG] mysql_tquery(1, "SELECT * FROM `MasterAccounts` WHERE `AccountName` = 'TheOnlyDroid' LIMIT 1", "OnMasterDataReceived", "d") (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:481)
[11:07:01] [DEBUG] CCallback::Create(amx=0x294ab48, name='OnMasterDataReceived', format='d', params=0x4bbdd44, param_offset=5)
[11:07:01] [DEBUG] CCallback::Create - callback index for 'OnMasterDataReceived': 20
[11:07:01] [DEBUG] processing specifier 'd' with parameter index 0
[11:07:01] [DEBUG] retrieved and pushed value '0'
[11:07:01] [INFO] Callback 'OnMasterDataReceived' set up for delayed execution.
[11:07:01] [DEBUG] created delayed callback with 1 parameter
[11:07:01] [DEBUG] CHandle::Execute(this=0x6ce4a0, type=1, query=0x6c6248)
[11:07:01] [DEBUG] CHandle::Execute - return value: true
[11:07:01] [DEBUG] mysql_tquery: return value: '1' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:481)
[11:07:01] [DEBUG] CConnection::Execute(query=0x6c6248, this=0x2a0b020, connection=0x278e6a0)
[11:07:01] [DEBUG] CQuery::Execute(this=0x6c6248, connection=0x278e6a0)
[11:07:01] [INFO] query "SELECT * FROM `MasterAccounts` WHERE `AccountName` = 'TheOnlyDroid' LIMIT 1" successfully executed
[11:07:01] [DEBUG] CCallback::Execute(amx=0x294ab48, index=20, num_params=1)
[11:07:01] [INFO] Executing callback 'OnMasterDataReceived' with 1 parameter...
[11:07:01] [DEBUG] processing internal specifier 'c'
[11:07:01] [DEBUG] pushed value '0' onto AMX stack
[11:07:01] [DEBUG] executing AMX callback with index '20'
[11:07:01] [DEBUG] cache_get_row_count(0x04BBED60) (E:\SA-MP-DEVELOPMENT\Server\pawno\include\a_mysql.inc:180)
[11:07:01] [DEBUG] cache_get_row_count: return value: '1' (E:\SA-MP-DEVELOPMENT\Server\pawno\include\a_mysql.inc:180)
[11:07:01] [DEBUG] AMX callback executed with error '0'
[11:07:01] [INFO] Callback successfully executed.
[11:07:05] [DEBUG] mysql_format(1, 0x04BBDC88, 1024, "INSERT INTO `MasterAccounts` (`AccountReference`,`AccountName`,`AccountPassword`,`AccountPasswordSalt`) VALUES ('%e','%e', '%s', '%e')") (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:582)
[11:07:05] [DEBUG] CHandle::EscapeString(this=0x6ce4a0, src='KJAHDDKQ')
[11:07:05] [DEBUG] CConnection::EscapeString(src='KJAHDDKQ', this=0x6c8340, connection=0x2782fd8)
[11:07:05] [DEBUG] CHandle::EscapeString - return value: true, escaped string: 'KJAHDDKQ'
[11:07:05] [DEBUG] CHandle::EscapeString(this=0x6ce4a0, src='TheOnlyDroid')
[11:07:05] [DEBUG] CConnection::EscapeString(src='TheOnlyDroid', this=0x6c8340, connection=0x2782fd8)
[11:07:05] [DEBUG] CHandle::EscapeString - return value: true, escaped string: 'TheOnlyDroid'
[11:07:05] [DEBUG] CHandle::EscapeString(this=0x6ce4a0, src='9Vu!W{JS'SLN')
[11:07:05] [DEBUG] CConnection::EscapeString(src='9Vu!W{JS'SLN', this=0x6c8340, connection=0x2782fd8)
[11:07:05] [DEBUG] CHandle::EscapeString - return value: true, escaped string: '9Vu!W{JS\'SLN'
[11:07:05] [DEBUG] mysql_format: return value: '223' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:582)
[11:07:05] [DEBUG] mysql_tquery(1, "INSERT INTO `MasterAccounts` (`AccountReference`,`AccountName`,`AccountPassword`,`AccountPasswordSalt`) VALUES ('KJAHDDKQ','TheOnlyDroid', '556788DBFFF6DD78F6F611BE437E40FBCB9C6ADD1D5AD7043A6FA839C38ABEA8', '9Vu!W{JS\'SLN')", "OnPlayerRegisterAccount", "d") (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:583)
[11:07:05] [DEBUG] CCallback::Create(amx=0x294ab48, name='OnPlayerRegisterAccount', format='d', params=0x4bbdc70, param_offset=5)
[11:07:05] [DEBUG] CCallback::Create - callback index for 'OnPlayerRegisterAccount': 24
[11:07:05] [DEBUG] processing specifier 'd' with parameter index 0
[11:07:05] [DEBUG] retrieved and pushed value '0'
[11:07:05] [INFO] Callback 'OnPlayerRegisterAccount' set up for delayed execution.
[11:07:05] [DEBUG] created delayed callback with 1 parameter
[11:07:05] [DEBUG] CHandle::Execute(this=0x6ce4a0, type=1, query=0x6c6248)
[11:07:05] [DEBUG] CHandle::Execute - return value: true
[11:07:05] [DEBUG] mysql_tquery: return value: '1' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:583)
[11:07:05] [DEBUG] CConnection::Execute(query=0x6c6248, this=0x2a0b020, connection=0x278e6a0)
[11:07:05] [DEBUG] CQuery::Execute(this=0x6c6248, connection=0x278e6a0)
[11:07:05] [INFO] query "INSERT INTO `MasterAccounts` (`AccountReference`,`AccountName`,`AccountPassword`,`AccountPasswordSalt`) VALUES ('KJAHDDKQ','TheOnlyDroid', '556788DBFFF6DD78F6F611BE437E40FBCB9C6ADD1D5AD7043A6FA839C38ABEA8', '9Vu!W{JS\'SLN')" successfully executed
[11:07:05] [DEBUG] CCallback::Execute(amx=0x294ab48, index=24, num_params=1)
[11:07:05] [INFO] Executing callback 'OnPlayerRegisterAccount' with 1 parameter...
[11:07:05] [DEBUG] processing internal specifier 'c'
[11:07:05] [DEBUG] pushed value '0' onto AMX stack
[11:07:05] [DEBUG] executing AMX callback with index '24'
[11:07:05] [DEBUG] AMX callback executed with error '0'
[11:07:05] [INFO] Callback successfully executed.
[11:08:12] [DEBUG] mysql_format(1, 0x04BBDD5C, 1024, "SELECT * FROM `MasterAccounts` WHERE `AccountName` = '%e' LIMIT 1") (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:480)
[11:08:12] [DEBUG] CHandle::EscapeString(this=0x6ce4a0, src='TheOnlyDroid')
[11:08:12] [DEBUG] CConnection::EscapeString(src='TheOnlyDroid', this=0x6c8340, connection=0x2782fd8)
[11:08:12] [DEBUG] CHandle::EscapeString - return value: true, escaped string: 'TheOnlyDroid'
[11:08:12] [DEBUG] mysql_format: return value: '75' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:480)
[11:08:12] [DEBUG] mysql_tquery(1, "SELECT * FROM `MasterAccounts` WHERE `AccountName` = 'TheOnlyDroid' LIMIT 1", "OnMasterDataReceived", "d") (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:481)
[11:08:12] [DEBUG] CCallback::Create(amx=0x294ab48, name='OnMasterDataReceived', format='d', params=0x4bbdd44, param_offset=5)
[11:08:12] [DEBUG] CCallback::Create - callback index for 'OnMasterDataReceived': 20
[11:08:12] [DEBUG] processing specifier 'd' with parameter index 0
[11:08:12] [DEBUG] retrieved and pushed value '0'
[11:08:12] [INFO] Callback 'OnMasterDataReceived' set up for delayed execution.
[11:08:12] [DEBUG] created delayed callback with 1 parameter
[11:08:12] [DEBUG] CHandle::Execute(this=0x6ce4a0, type=1, query=0x6cd4f8)
[11:08:12] [DEBUG] CHandle::Execute - return value: true
[11:08:12] [DEBUG] mysql_tquery: return value: '1' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:481)
[11:08:12] [DEBUG] CConnection::Execute(query=0x6cd4f8, this=0x2a0b020, connection=0x278e6a0)
[11:08:12] [DEBUG] CQuery::Execute(this=0x6cd4f8, connection=0x278e6a0)
[11:08:12] [INFO] query "SELECT * FROM `MasterAccounts` WHERE `AccountName` = 'TheOnlyDroid' LIMIT 1" successfully executed
[11:08:12] [DEBUG] CCallback::Execute(amx=0x294ab48, index=20, num_params=1)
[11:08:13] [INFO] Executing callback 'OnMasterDataReceived' with 1 parameter...
[11:08:13] [DEBUG] processing internal specifier 'c'
[11:08:13] [DEBUG] pushed value '0' onto AMX stack
[11:08:13] [DEBUG] executing AMX callback with index '20'
[11:08:13] [DEBUG] cache_get_row_count(0x04BBED60) (E:\SA-MP-DEVELOPMENT\Server\pawno\include\a_mysql.inc:180)
[11:08:13] [DEBUG] cache_get_row_count: return value: '1' (E:\SA-MP-DEVELOPMENT\Server\pawno\include\a_mysql.inc:180)
[11:08:13] [DEBUG] cache_get_value_name(0, "AccountPassword", 0x03AD4ABC, 1) (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:488)
[11:08:13] [DEBUG] cache_get_value_name: assigned value: '556788DBFFF6DD78F6F611BE437E40FBCB9C6ADD1D5AD7043A6FA839C38ABEA8' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:488)
[11:08:13] [DEBUG] cache_get_value_name: return value: '1' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:488)
[11:08:13] [DEBUG] cache_get_value_name(0, "AccountPasswordSalt", 0x03AD4CAC, 1) (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:489)
[11:22:50] [DEBUG] mysql_set_option(1, 0) (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:595)
[11:22:50] [DEBUG] mysql_set_option: return value: '1' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:595)
[11:22:50] [DEBUG] mysql_connect("localhost", "root", "*****", "USRP", 1) (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:597)
[11:22:50] [DEBUG] CHandleManager::Create(this=0x596788, host='localhost', user='root', pass='****', db='USRP', options=0x594e08)
[11:22:50] [INFO] Creating new connection handle...
[11:22:50] [WARNING] mysql_connect: no password specified (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:597)
[11:22:50] [DEBUG] CConnection::CConnection(this=0x599958, host='localhost', user='root', passw='****', db='USRP', options=0x594e08)
[11:22:50] [DEBUG] CConnection::CConnection - new connection = 0x2902fd8
[11:22:50] [DEBUG] CConnection::CConnection(this=0x4ef7020, host='localhost', user='root', passw='****', db='USRP', options=0x594e08)
[11:22:50] [DEBUG] CConnection::CConnection - new connection = 0x290e6a0
[11:22:50] [DEBUG] CThreadedConnection::WorkerFunc(this=0x4ef7020, connection=0x4ef7020)
[11:22:50] [DEBUG] CThreadedConnection::CThreadedConnection(this=0x4ef7020, connection=0x4ef7020)
[11:22:50] [DEBUG] CConnectionPool::CConnectionPool(size=2, this=0x599898)
[11:22:50] [DEBUG] CConnection::CConnection(this=0x508a020, host='localhost', user='root', passw='****', db='USRP', options=0x594e08)
[11:22:50] [DEBUG] CConnection::CConnection - new connection = 0x4e0bfb8
[11:22:50] [DEBUG] CThreadedConnection::WorkerFunc(this=0x508a020, connection=0x508a020)
[11:22:50] [DEBUG] CThreadedConnection::CThreadedConnection(this=0x508a020, connection=0x508a020)
[11:22:50] [DEBUG] CConnection::CConnection(this=0x5258020, host='localhost', user='root', passw='****', db='USRP', options=0x594e08)
[11:22:50] [DEBUG] CConnection::CConnection - new connection = 0x4e15148
[11:22:50] [DEBUG] CThreadedConnection::WorkerFunc(this=0x5258020, connection=0x5258020)
[11:22:50] [DEBUG] CThreadedConnection::CThreadedConnection(this=0x5258020, connection=0x5258020)
[11:22:50] [INFO] Connection handle with id '1' successfully created.
[11:22:50] [DEBUG] CHandleManager::Create - new handle = 0x5a0a50
[11:22:50] [DEBUG] mysql_connect: return value: '1' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:597)
[11:22:50] [DEBUG] mysql_errno(1) (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:598)
[11:22:50] [DEBUG] CHandle::GetErrorId(this=0x5a0a50)
[11:22:50] [DEBUG] CConnection::GetError(this=0x599958, connection=0x2902fd8)
[11:22:50] [DEBUG] CHandle::GetErrorId - return value: true, error id: '0', error msg: ''
[11:22:50] [DEBUG] mysql_errno: return value: '0' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:598)
[11:23:58] [DEBUG] mysql_format(1, 0x04CDFD5C, 1024, "SELECT * FROM `MasterAccounts` WHERE `AccountName` = '%e' LIMIT 1") (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:480)
[11:23:58] [DEBUG] CHandle::EscapeString(this=0x5a0a50, src='TheOnlyDroid')
[11:23:58] [DEBUG] CConnection::EscapeString(src='TheOnlyDroid', this=0x599958, connection=0x2902fd8)
[11:23:58] [DEBUG] CHandle::EscapeString - return value: true, escaped string: 'TheOnlyDroid'
[11:23:58] [DEBUG] mysql_format: return value: '75' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:480)
[11:23:58] [DEBUG] mysql_tquery(1, "SELECT * FROM `MasterAccounts` WHERE `AccountName` = 'TheOnlyDroid' LIMIT 1", "OnMasterDataReceived", "d") (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:481)
[11:23:58] [DEBUG] CCallback::Create(amx=0x2b5ab48, name='OnMasterDataReceived', format='d', params=0x4cdfd44, param_offset=5)
[11:23:58] [DEBUG] CCallback::Create - callback index for 'OnMasterDataReceived': 20
[11:23:58] [DEBUG] processing specifier 'd' with parameter index 0
[11:23:58] [DEBUG] retrieved and pushed value '0'
[11:23:58] [INFO] Callback 'OnMasterDataReceived' set up for delayed execution.
[11:23:58] [DEBUG] created delayed callback with 1 parameter
[11:23:58] [DEBUG] CHandle::Execute(this=0x5a0a50, type=1, query=0x5967f0)
[11:23:58] [DEBUG] CHandle::Execute - return value: true
[11:23:58] [DEBUG] mysql_tquery: return value: '1' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:481)
[11:23:58] [DEBUG] CConnection::Execute(query=0x5967f0, this=0x4ef7020, connection=0x290e6a0)
[11:23:58] [DEBUG] CQuery::Execute(this=0x5967f0, connection=0x290e6a0)
[11:23:58] [INFO] query "SELECT * FROM `MasterAccounts` WHERE `AccountName` = 'TheOnlyDroid' LIMIT 1" successfully executed
[11:23:58] [DEBUG] CCallback::Execute(amx=0x2b5ab48, index=20, num_params=1)
[11:23:58] [INFO] Executing callback 'OnMasterDataReceived' with 1 parameter...
[11:23:58] [DEBUG] processing internal specifier 'c'
[11:23:58] [DEBUG] pushed value '0' onto AMX stack
[11:23:58] [DEBUG] executing AMX callback with index '20'
[11:23:58] [DEBUG] cache_get_row_count(0x04CE0D60) (E:\SA-MP-DEVELOPMENT\Server\pawno\include\a_mysql.inc:180)
[11:23:58] [DEBUG] cache_get_row_count: return value: '1' (E:\SA-MP-DEVELOPMENT\Server\pawno\include\a_mysql.inc:180)
[11:23:58] [DEBUG] cache_get_value_name(0, "AccountPassword", 0x03BF6ABC, 124) (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:488)
[11:23:58] [DEBUG] cache_get_value_name: assigned value: '556788DBFFF6DD78F6F611BE437E40FBCB9C6ADD1D5AD7043A6FA839C38ABEA8' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:488)
[11:23:58] [DEBUG] cache_get_value_name: return value: '1' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:488)
[11:23:58] [DEBUG] cache_get_value_name(0, "AccountPasswordSalt", 0x03BF6CAC, 12) (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:489)
[11:24:39] [DEBUG] mysql_set_option(1, 0) (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:595)
[11:24:39] [DEBUG] mysql_set_option: return value: '1' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:595)
[11:24:39] [DEBUG] mysql_connect("localhost", "root", "*****", "USRP", 1) (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:597)
[11:24:39] [DEBUG] CHandleManager::Create(this=0x6c4a38, host='localhost', user='root', pass='****', db='USRP', options=0x6c4410)
[11:24:39] [INFO] Creating new connection handle...
[11:24:39] [WARNING] mysql_connect: no password specified (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:597)
[11:24:39] [DEBUG] CConnection::CConnection(this=0x6c8a38, host='localhost', user='root', passw='****', db='USRP', options=0x6c4410)
[11:24:39] [DEBUG] CConnection::CConnection - new connection = 0x29f2fd8
[11:24:39] [DEBUG] CConnection::CConnection(this=0x2932020, host='localhost', user='root', passw='****', db='USRP', options=0x6c4410)
[11:24:39] [DEBUG] CConnection::CConnection - new connection = 0x29fe6a0
[11:24:39] [DEBUG] CThreadedConnection::WorkerFunc(this=0x2932020, connection=0x2932020)
[11:24:39] [DEBUG] CThreadedConnection::CThreadedConnection(this=0x2932020, connection=0x2932020)
[11:24:39] [DEBUG] CConnectionPool::CConnectionPool(size=2, this=0x6c8678)
[11:24:39] [DEBUG] CConnection::CConnection(this=0x4f66020, host='localhost', user='root', passw='****', db='USRP', options=0x6c4410)
[11:24:39] [DEBUG] CConnection::CConnection - new connection = 0x4d3bfb8
[11:24:39] [DEBUG] CThreadedConnection::WorkerFunc(this=0x4f66020, connection=0x4f66020)
[11:24:39] [DEBUG] CThreadedConnection::CThreadedConnection(this=0x4f66020, connection=0x4f66020)
[11:24:39] [DEBUG] CConnection::CConnection(this=0x5134020, host='localhost', user='root', passw='****', db='USRP', options=0x6c4410)
[11:24:39] [DEBUG] CConnection::CConnection - new connection = 0x4d45148
[11:24:39] [DEBUG] CThreadedConnection::WorkerFunc(this=0x5134020, connection=0x5134020)
[11:24:39] [DEBUG] CThreadedConnection::CThreadedConnection(this=0x5134020, connection=0x5134020)
[11:24:39] [INFO] Connection handle with id '1' successfully created.
[11:24:39] [DEBUG] CHandleManager::Create - new handle = 0x6cf308
[11:24:39] [DEBUG] mysql_connect: return value: '1' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:597)
[11:24:39] [DEBUG] mysql_errno(1) (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:598)
[11:24:39] [DEBUG] CHandle::GetErrorId(this=0x6cf308)
[11:24:39] [DEBUG] CConnection::GetError(this=0x6c8a38, connection=0x29f2fd8)
[11:24:39] [DEBUG] CHandle::GetErrorId - return value: true, error id: '0', error msg: ''
[11:24:39] [DEBUG] mysql_errno: return value: '0' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:598)
[11:25:02] [DEBUG] mysql_format(1, 0x04C16D5C, 1024, "SELECT * FROM `MasterAccounts` WHERE `AccountName` = '%e' LIMIT 1") (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:480)
[11:25:02] [DEBUG] CHandle::EscapeString(this=0x6cf308, src='TheOnlyDroid')
[11:25:02] [DEBUG] CConnection::EscapeString(src='TheOnlyDroid', this=0x6c8a38, connection=0x29f2fd8)
[11:25:02] [DEBUG] CHandle::EscapeString - return value: true, escaped string: 'TheOnlyDroid'
[11:25:02] [DEBUG] mysql_format: return value: '75' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:480)
[11:25:02] [DEBUG] mysql_tquery(1, "SELECT * FROM `MasterAccounts` WHERE `AccountName` = 'TheOnlyDroid' LIMIT 1", "OnMasterDataReceived", "d") (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:481)
[11:25:02] [DEBUG] CCallback::Create(amx=0x2a8ab48, name='OnMasterDataReceived', format='d', params=0x4c16d44, param_offset=5)
[11:25:02] [DEBUG] CCallback::Create - callback index for 'OnMasterDataReceived': 20
[11:25:02] [DEBUG] processing specifier 'd' with parameter index 0
[11:25:02] [DEBUG] retrieved and pushed value '0'
[11:25:02] [INFO] Callback 'OnMasterDataReceived' set up for delayed execution.
[11:25:02] [DEBUG] created delayed callback with 1 parameter
[11:25:02] [DEBUG] CHandle::Execute(this=0x6cf308, type=1, query=0x6d3268)
[11:25:02] [DEBUG] CHandle::Execute - return value: true
[11:25:02] [DEBUG] mysql_tquery: return value: '1' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:481)
[11:25:02] [DEBUG] CConnection::Execute(query=0x6d3268, this=0x2932020, connection=0x29fe6a0)
[11:25:02] [DEBUG] CQuery::Execute(this=0x6d3268, connection=0x29fe6a0)
[11:25:02] [INFO] query "SELECT * FROM `MasterAccounts` WHERE `AccountName` = 'TheOnlyDroid' LIMIT 1" successfully executed
[11:25:02] [DEBUG] CCallback::Execute(amx=0x2a8ab48, index=20, num_params=1)
[11:25:02] [INFO] Executing callback 'OnMasterDataReceived' with 1 parameter...
[11:25:02] [DEBUG] processing internal specifier 'c'
[11:25:02] [DEBUG] pushed value '0' onto AMX stack
[11:25:02] [DEBUG] executing AMX callback with index '20'
[11:25:02] [DEBUG] cache_get_row_count(0x04C17D60) (E:\SA-MP-DEVELOPMENT\Server\pawno\include\a_mysql.inc:180)
[11:25:02] [DEBUG] cache_get_row_count: return value: '1' (E:\SA-MP-DEVELOPMENT\Server\pawno\include\a_mysql.inc:180)
[11:25:02] [DEBUG] cache_get_value_name(0, "AccountPassword", 0x03B2DABC, 124) (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:488)
[11:25:02] [DEBUG] cache_get_value_name: assigned value: '556788DBFFF6DD78F6F611BE437E40FBCB9C6ADD1D5AD7043A6FA839C38ABEA8' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:488)
[11:25:02] [DEBUG] cache_get_value_name: return value: '1' (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:488)
[11:25:02] [DEBUG] cache_get_value_name(0, "AccountPasswordSalt", 0x03B2DCAC, 12) (E:\SA-MP-DEVELOPMENT\[NO NAME] Project\script.pwn:489)
Quote:
Originally Posted by justjamie
Посмотреть сообщение
No need for that, when i use SendClientMessage i can already see it is correctly loaded inside the enumerator.
I'd respectfully ask that you don't reply to a thread and post random stuff that isn't related to the situation just making my life and anyone else who's actually trying to help resolve the matter and fix it life hard.. Thanks.
Reply
#7

After a lot of debugging the character that crashes is {

It is something that Pain123/maddinat0r added recently because when the plugin was at 84%, this issue did not exist. Until it gets fixed in R41, please produce random salts up to 122 (in ASCII which is z).
Reply
#8

Quote:
Originally Posted by Konstantinos
Посмотреть сообщение
After a lot of debugging the character that crashes is {

It is something that Pain123/maddinat0r added recently because when the plugin was at 84%, this issue did not exist. Until it gets fixed in R41, please produce random salts up to 122 (in ASCII which is z).
Awesome, I'll just make a function to create a random hash/salt and exclude that character... Atleast we're aware of what causes that crash now.
Reply
#9

It has to do with DEBUG level. There are 3 workarounds for now so you can be able to use that character:

- setting mysql_log to NONE (not recommended).
- removing mysql_log completely and let it be the default (ERROR and WARNING) level. The constants are mixed up in a_mysql.inc file for debug level and you need to change them. See here: http://forum.sa-mp.com/showpost.php?...postcount=5953
- Using R41 (for Windows only) which fixes the above (good if it is a test server).
Reply


Forum Jump:


Users browsing this thread: 4 Guest(s)