13.08.2009, 15:03
You don't need 255, it's too long, MAX_PLAYER_NAME is enough.
pawn Код:
stock PlayerName(playerid)
{
new name[MAX_PLAYER_NAME];
GetPlayerName(playerid, name, sizeof(name));
return name;
}