09.06.2015, 02:16
You can use something like this:
A message will be seen as:
playername: (0) My message.
Код:
public OnPlayerText(playerid, text[]) { new pText[144]; format(pText, sizeof (pText), "(%d) %s", playerid, text); SendPlayerMessageToAll(playerid, pText); return 0; // ignore the default text and send the custom one }
playername: (0) My message.