Log in

View Full Version : Force Particular Style on Banned Usergroup


wrongful
08-16-2004, 10:00 PM
This hack forces a style on a particular usergroup. The best way for me to explain what this hack actually does is by explaining to you how I use it.

I have a special style and template set on my forums created expecially for my banned and suspended users. This template contains horrible colors and pictures, annoying javascript, pop up windows, flashing backgrounds, if it's annoying, it's in there. Simply put, users in my banned usergroups are forced to see this template on all pages. I guess it can be thought of as a different sort of miserable hack. Anyhow, the file modification is real simple.

In global.php

find:
// is style in the forum/thread set?

add above:

// Force Style on Banned Usergroup Hack
// Change 00 to the usergroup ID of your banned usergroup
if ($bbuserinfo['usergroupid'] == 00)
{
// Set styleid to the ID number of the style you want to force
$styleid = 00;
$userselect = true;
}
else
// Force Style on Banned Usergroup Hack

Change the variables and that's it!

If you want to do this to two usergroups just change
if ($bbuserinfo['usergroupid'] == 00)to
if ($bbuserinfo['usergroupid'] == 00 OR ($bbuserinfo['usergroupid'] == 00))and fill in the variables.

This is my first hack, but I think I got everything right. If you have any suggestions, or questions I will be more than happy to try and answer them. I created this hack for myself, but I saw someone else request something like this here, so I am releasing it.

If you use please click install! :)

SaltedSlug
06-17-2005, 05:48 PM
Just what I was looking for! Cheers!

Zelda-King
01-29-2006, 08:49 AM
To use this on 3.5 check this thread;

https://vborg.vbsupport.ru/showthread.php?t=106557