Quote:
Originally posted by hellsatan
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
|
Thanks!
ione more question
how would i add a ban function that worked like this.
instead of having a set timer for a ban, the mega mod would ban the user, and if that user has been a pain leave him banned under that user name for good. BUT if he just wants it to be a temp ban, he can just un-ban him at a later date.