11.12.2016, 15:59
Quote:
Verify that player is already logged in with the same account name and kick. |
PHP код:
format(PlayerData[playerid][pConta], 60, nome);
PHP код:
SetPlayerName(playerid, Account[playerid][pPersonagem1]);
How can I do this verification?
What I got:
PHP код:
new name[MAX_PLAYER_NAME];
GetPlayerName(playerid, name, sizeof(name));
if(name == PlayerData[playerid][pConta])
{
SendClientMessage(playerid, -1, "Essa conta jб estб online e vocк foi kickado.");
return Kick(playerid);
}