02.03.2011, 22:40
Yeh,
Or something like that..
pawn Код:
public OnRconCommand(cmd[])
{
if(strcmp(cmd, "say", true) == 0)
{
new string[256];
format(string, sizeof(string), "* Admin %s: %s", get the playername, find the message entered after /rcon say);
SendClientMessageToAll(color, string);
return false;
}
return 1;
}
Or something like that..