29.05.2009, 00:48
this should do it.
pawn Код:
if(!strcmp(cmdtext, "/local", true, 6))
{
new str[256], pname[256];
GetPlayerName(playerid, pname, 256);
format(str, 256, "(( Local Ooc: %s:%s ))", pname, cmdtext[6]);
LimitGlobalChatRadius(20);
OnPlayerText(playerid, str);
LimitGlobalChatRadius(999999);
return 1;
}