Seeing as I did this totaly wrong the first time

This should exempt forums from the censor as per the request.
In includes/functions.php find:
PHP Code:
function fetch_censored_text($text)
{
global $vboptions;
static $censorwords;
Replace with (change X, Y, Z to your forumids seperated by commas):
PHP Code:
function fetch_censored_text($text)
{
global $vboptions, $foruminfo;
static $censorwords;
if (!empty($foruminfo['forumid'] && in_array($foruminfo['forumid'], array(X, Y, X))) {
return $text;
}