I know on some forums, the usergroups have different features to access certain plugins The only one I know of that allows this is Username Color Changer
The code for the "apparent" feature to allow this in that plugin is:
PHP Code:
// add settings
$setting = array(
"sid"=> NULL,
"name"=> "userstyle_usergroups",
"title"=> "Allowed Usergroups",
"description"=> "Enter the IDs of the groups allowed to use this feature. (use \'all\' to allow everyone)",
"optionscode"=> "text",
"value"=> 'all',
"disporder"=> 1,
"gid"=> $gid
);
$db->insert_query("settings", $setting);
I am looking to add to plugins; a option like that to allow it's access to certain usergroups I'd really appreciate it if anyone could help me with this