PDA

View Full Version : HELP PLS< read in side. i want something edited pls


rocket
06-05-2004, 03:11 PM
OKay i tred yesterday to edit this hack its called staff online colours. the reason why i wanted to edit it was because i wanna add another group to it and for some odd reason my codes arent working *confused* can someone help me? this is wut i want done pls.

this is wat im trying to do i wanan make a group called " sexy super mods " and i want themt o glow pink. i tryed to work it into the code but i had an error so i just replaced it soo can any one help me? if soo pls drop wut u have edited soo it will work for me thanks :D


// Afterburners Colored OnlineUserHack Start
if ($loggedin['usergroupid'] == 6 and $highlightadmin) {
$username = "<b><i><font color=red>$loggedin[username]</font></i></b>"; // Color for Admin
} else if (($loggedin['usergroupid'] == 5) and $highlightadmin) {
$username = "<b><font color=darkred>$loggedin[username]</font></b>"; // Color for Supermod
} else if (($mod["$userid"]) and $highlightadmin) {
$username = "<b><font color=green>$loggedin[username]</font></b>"; // Color for Mod
} else if (($Super Sexy Mod["$userid"]) and $highlightadmin) {
$username = "<i><font color=pink>$loggedin[username]</font></i>"; // Color for Sexy Super Mod
} else {
$username = "<font color=blue>$loggedin[username]</font>"; // Color for normal Member or "Highlight Admin" is turned of
}
eval("\$activeusers = \"".gettemplate('forumhome_loggedinuser')."\";");
}

while ($loggedin=$DB_site->fetch_array($loggedins)) {
$numberregistered++;
$invisibleuser = '';
if ($loggedin['invisible']==1 and $bbuserinfo['usergroupid']!=6) {
continue;
}
$numbervisible++;
$userid=$loggedin['userid'];
if ($loggedin['invisible'] == 1) { // Invisible User but show to Admin
$invisibleuser = '*';
}
if ($loggedin['usergroupid'] == 6 and $highlightadmin) {
$username = "<b><i><font color=red>$loggedin[username]</font></i></b>"; // Color for Admin
} else if (($loggedin['usergroupid'] == 5) and $highlightadmin) {
$username = "<b><font color=darkred>$loggedin[username]</font></b>"; // Color for Supermod
} else if (($mod["$userid"]) and $highlightadmin) {
$username = "<b><font color=green>$loggedin[username]</font></b>"; // Color for Mod
} else if (($Super Sexy Mod["$userid"]) and $highlightadmin) {
$username = "<i><font color=pink>$loggedin[username]</font></i>"; // Color for Sexy Super Mod
} else {
$username = "<font color=blue>$loggedin[username]</font>"; // Color for normal Member or "Highlight Admin" is turned of
}
eval("\$activeusers = \"".gettemplate('forumhome_loggedinuser')."\";");

Velocd
06-06-2004, 12:05 AM
I suggest upgrading to vBulletin 3, there is a built in feature to give user groups (e.g. moderators) formatted user titles and user names (e.g. glow in red, etc.)

rocket
06-06-2004, 08:20 PM
nah man i hate vb 3 lol the hacks are wack lol and also .. yeah.. can someone pls do this for me thanks

Tony G
06-07-2004, 03:47 AM
Okay, first you will need to find the usergroupid of the sexy super mod group. You can do this basically by just hovering over the link to the group in the user groups manager, and it should tell you in the URL.

Next, you can just simply copy (try the supermod part) and edit to match with the new usergroup. Edit things like what the usergroup id number should be, as well as the HTML markup you want.