PDA

View Full Version : A few hacks I can't find.


sebastian406
06-17-2003, 04:36 PM
I few of these hacks, I had previously installed, but now I can't seem to find them. I know all these hacks are here (somewhere), so it's not really a request.

These are the hacks I'm looking for:
-This hack adds [New Thread] beside all forums on the main page.
-This adds an banned users link at the bottom on the main forum. There are a list of all the banned users, why and for how long.
-Not sure if I'll use this one, but it adds an Admin CP or Mod CP link to the bottom on the page, depending on your status.
-And the server status hack.


If you know the URL or even the name of any of these, please let me know. Thanks a lot. :)

sebastian406
06-18-2003, 04:48 PM
Bump.. anyone?

Buczilla
06-19-2003, 03:21 AM
I could use the Admin CP/ Mod CP link one... so I'll bump it

It's gotta be something like (I really don't know any php... but)

if {userlevel_$admin}
then

thanks for any help anyone :)

EvilLS1
06-19-2003, 04:30 AM
if ($bbuserinfo[usergroupid]==6) {
//admins
$adminpanel = "<a href=\"admin/index.php\">Administration Panel</a><br>";
} else if (($bbuserinfo[usergroupid] ==5) || ($bbuserinfo[usergroupid] ==7)) {
//mods and super mods
$adminpanel = "<a href=\"mod/index.php\">Moderation Panel</a><br>";
} else {
//everyone else
$adminpanel = "";
}