26.06.2014, 05:40
pawn Код:
public OnPlayerText(playerid, text[])
{
new Text[144],name[64];
GetPlayerName(playerid,name,sizeof(name));
format(Text, sizeof (Text), "[%d] %s: %s", playerid,name, text);
SendClientMessageToAll(-1, Text);
return 0; // this should be return 0;
}