No, I added this now but i need some help, this is the first time I attempt something like this:
PHP Code:
public plugin_natives ()
{
register_native("is_user_rebel", "_is_user_rebel");
register_native("set_user_rebel", "_set_user_rebel");
register_native("remove_user_rebel", "_remove_user_rebel");
}
public _is_user_rebel(id)
{
if(is_user_rebel(id) )
return 1;
else
return 0;
}
public _set_user_rebel(id)
{
if(!is_user_rebel(id) )
{
//No clue what to put here, just some bold guesses
return 1;
}
}
public _remove_user_rebel(id)
{
// need some help
}
When this piece of code is finished then i should put that in both plugin that use this include right?
what do you mean with the library?
__________________