24.07.2009, 17:28
You would first have to get the player name with 'GetPlayerName' and to a 'strcmp' comparison with the name you want.
Example:
Example:
pawn Код:
new name[MAX_PLAYER_NAME];
GetPlayerName(playerid,name,sizeof(name));
if(!strcmp(name,"Bob_Jones",false))
{
...function...
}

