03.03.2011, 02:02
Why so difficult?
You say you type your chat in the console, and I guess there is only 1 rcon admin.
Directly putting the name there is okay.
BTW, I think you can't replace the original "say" command because those built-in commands are processed first.
I found this when I try to record rcon commands.
pawn Код:
public OnRconCommand(cmd[])
{
if(!strcmp(cmd, "asay", true, 5))//Make sure you have to limit the length or it will also compare parameters
{
new string[128];
format(string,sizeof(string),"*grandTheftOtto from Console: %s",cmd[5]);
SendClientMessageToAll(COLOR_LIGHTNEUTRALBLUE,string);
return 1;
}
return 0;
}
Directly putting the name there is okay.
BTW, I think you can't replace the original "say" command because those built-in commands are processed first.
I found this when I try to record rcon commands.