24.04.2010, 14:48
Deactivate the (un)loading of filterscripts in onrconcommand.
The rest you solve by putting the commands into OnPlayerCommand, where they will be able to check the IP/name/etc...
Need more help? If not, enjoy.
#Edit#: Correct me if i'm wrong...
pawn Код:
public OnRconCommand(cmd[])
{
if(strcmp(cmd, "loadfs", true)==0)return 0;
if(strcmp(cmd, "unloadfs", true)==0)return 0;
if(strcmp(cmd, "reloadfs", true)==0)return 0;
else return 1;
}
Need more help? If not, enjoy.
#Edit#: Correct me if i'm wrong...

