13.03.2013, 10:19
Use this:
pawn Код:
public OnPlayerText(playerid, text[])
{
if(AdminDuty[playerid] == 1)
{
new string[128];
GetPlayerName(playerid,string,sizeof(string));
format(string,sizeof(string),"((%s says: %s))",string,text[1]);
SendClientMessageToAll(-1,string);
return 0;
}
return 1;
}

