24.12.2013, 16:57
Guys, what is better? I do not know if is better to create in each public for example this:
Or is better to create new stock function
And then just put this stock function to format? Thanks.
pawn Код:
Name[MAX_PLAYER_NAME];
GetPlayerName (playerid, Name, sizeof (Name));
pawn Код:
stock GetName(playerid)use this function
{
new Name[MAX_PLAYER_NAME];
GetPlayerName(playerid, Name, sizeof(Name));
return Name
}