24.11.2011, 12:14
the most common mistake is the usage of
..the return 1; avoids further processing of your typed command, so its aborted before the filterscript can pass the execution of the command.
try replacing the return 1; with return 0;
it should do the trick.
Код:
OnPlayerCommandText { // your commands of the filterscript return 1; }
try replacing the return 1; with return 0;
it should do the trick.