Quote:
Originally Posted by Xevious
added return PLUGIN_HANDLED
It compiled, but one error occur again
warning 217: loose indentation at line (39)
|
So do what the warning is telling you and fix the indenting. Nobody should need help doing this.
Here's an example for you, blah2() is a loose indent:
Code:
new var1;
new var2;
if ( var1 == 5 )
{
blah();
blah2();
blah3();
}
__________________