Quote:
Originally Posted by MyUndiesSmell
You can use a stock to return a players name, it will be alot faster than typing that out each time.
Код:
stock pName(playerid)
{
new name[MAX_PLAYER_NAME];
GetPlayerName(playerid, name, MAX_PLAYER_NAME);
return name;
}
|
Just a plain function, the usage of stock is unnecessary in this case.