28.08.2015, 20:12
It seems you have the PlayerName function missing from the script.
Place this somewhere in your script.
PHP код:
PlayerName(playerid)
{
new
Name[MAX_PLAYER_NAME];
GetPlayerName(playerid, Name, sizeof(Name));
return Name;
}