Quote:
Originally Posted by drekes
No problem, this may be usefull to other people to i think.
EDIT: Let's say i return PLUGIN_HANDLED in public checksomething(id). Will client_connect still continue then? and if so, is there a way to stop that?
|
Yes, it'll still continue.
To stop that, you could do something like this.
Code:
func()
{
if( check_something() == PLUGIN_HANDLED )
{
return PLUGIN_HANDLED;
}
// stuff
}
__________________