Well I found a work around that works for every location on the forum (thread, forum, index.php?f=xx) just took some patience. Thanks for the help
I'll explain what I did:
I simply created a hook in global_start, and have this code:
PHP Code:
$arrayOfForumIDs = array(5,7,13); // eventually switch this to vBulletin Options
if(in_array($vbulletin->GPC['forumid'], $arrayOfForumIDs))
{
$vbulletin->options['selectednavtab'] = 'MODSYSTEM';
}
Which works anywhere, where there's any type of forum present, and it does not select the tab unwanted it appears (as I thought it may)