Yes...
You will need to make sure that you only give them the url, as any Mod can access it at this time...I am trying to sort that out...
Whatever hacks you can do to the Admin CP, you can do to this one too...
If you want to ensure that only your mega-mods can access it, enter this in the top of every php file, under :
PHP Code:
require("./global.php");
You can enter :
PHP Code:
if (($bbuserinfo[usergroupid]!=X) and ($bbuserinfo[usergroupid]!=Y)) {
echo "<p>You cannot perform this function.</p>";
cpfooter();
exit;
}
(Change X and Y to the Ids of your MegaMod group, and your Admin group)
So yes...In answer to your question, yes you can
Satan