15.12.2014, 02:35
Do you have this in any of your scripts running? Is this on a gamemode, or filterscript? Try placing this in a filterscript, and then try typing something. Something should appear in the server console / log:
pawn Код:
public OnPlayerText(playerid,text[])
{
new name[24];
GetPlayerName(playerid, name, 24);
printf("[CHAT]%s: %s(ID: %d)", name, text, playerid);
return true;
}