Mysql Login System[Problem]
#4

Quote:
Originally Posted by Koala818
Посмотреть сообщение
Show us the "OnPlayerConnect" callback
Код:
public OnPlayerConnect(playerid)
{
    ClearVariables(playerid);
	new ip[15];
	TogglePlayerSpectating(playerid, 1);
    SetPlayerColor(playerid, WHITE);
    ClearChat(playerid, 50);
    
    GetPlayerIp(playerid, ip, sizeof(ip));

	format(szQuery, sizeof(szQuery), "SELECT * FROM `accounts` WHERE `username` = '%s'", ReturnPlayerName(playerid));
	mysql_function_query(MainPipeline, szQuery, true, "OnQueryFinish", "ii", THREAD_CHECK_ACCOUNT, playerid);
	
	format(szQuery, sizeof(szQuery), "INSERT INTO `connections` (`Name`, `IP`, `Date`) VALUES ('%s', '%s', '%s')", ReturnPlayerName(playerid), ip, TimeDate());
	mysql_function_query(MainPipeline, szQuery, true, "OnQueryFinish", "ii", THREAD_NO_RESULT, playerid);

	
	DeleteObjectsForPlayer(playerid);
	return 1;
}
Reply


Messages In This Thread
Mysql Login System[Problem] - by EgyptForLife - 21.05.2014, 17:03
Re: Mysql Login System[Problem] - by EgyptForLife - 21.05.2014, 19:17
Re: Mysql Login System[Problem] - by Koala818 - 21.05.2014, 19:22
Re: Mysql Login System[Problem] - by EgyptForLife - 21.05.2014, 19:26
Re: Mysql Login System[Problem] - by Koala818 - 21.05.2014, 19:30
Re: Mysql Login System[Problem] - by EgyptForLife - 21.05.2014, 19:34
Re: Mysql Login System[Problem] - by Koala818 - 21.05.2014, 19:37
Re: Mysql Login System[Problem] - by EgyptForLife - 21.05.2014, 19:39
Re: Mysql Login System[Problem] - by EgyptForLife - 21.05.2014, 21:15
Re: Mysql Login System[Problem] - by AndySedeyn - 21.05.2014, 21:26

Forum Jump:


Users browsing this thread: 2 Guest(s)