26.10.2014, 21:01
(
Последний раз редактировалось Fj0rtizFredde; 26.10.2014 в 23:55.
)
You mean something like this?
pawn Код:
public OnPlayerText(playerid, text[])
{
new pText[128 + MAX_PLAYER_NAME], pName[MAX_PLAYER_NAME];
GetPlayerName(playerid, pName, 24);
format(pText, sizeof (pText), "%s SAYS: %s", pName, text);
SendClientMessageToAll(-1, pText);
return 0;
}