18.07.2017, 13:22
Quote:
if youre using stock you can call it when you need it for example
pawn Код:
pawn Код:
|
PHP код:
PlayerName(playerid)
{
new name[MAX_PLAYER_NAME];
GetPlayerName(playerid, name, MAX_PLAYER_NAME);
return name;
}
new tmp[30];
format(tmp sizeof tmp, "Hello %s", PlayerName(playerid));
SendClientMessage(playerid, 1, tmp);