29.11.2010, 13:18
I've just included the id's as i got no clue how you get the player's name, if you use a stock or whatever ..
Now just change pID and playerid in your command to: GetPlayerNameEx(pID) & GetPlayerNameEx(playerid)
pawn Код:
stock GetPlayerNameEx(playerid) // This is how i do it.
{
new pName[25];
GetPlayerName(playerid, pName, sizeof(pName));
return pName;
}