Sure! Give me two seconds and I'll give you a modified code sample.
Ok, here it is... to apply this hack to only certain forums:
Open the plugin for the showthread_getinfo hook and find:
PHP Code:
if ($thread['lastpost'] < (TIMENOW - 2592000))
And replace it with:
PHP Code:
if ($thread['lastpost'] < (TIMENOW - 2592000) AND (in_array($thread['forumid'], array(1,2,3))))
...changing 1,2,3 to the forum ids you want to apply the hack to (you can add more or less as you please). Then in the newreply_start plugin, find:
PHP Code:
if (($threadinfo['lastpost'] < (TIMENOW - 2592000)) AND ($vbulletin->userinfo[usergroupid]!=6 AND $vbulletin->userinfo[usergroupid]!=5))
And replace with:
PHP Code:
if (($threadinfo['lastpost'] < (TIMENOW - 2592000)) AND ($vbulletin->userinfo[usergroupid]!=6 AND $vbulletin->userinfo[usergroupid]!=5) AND (in_array($thread['forumid'], array(1,2,3))))
On the other side, if you want to exclude only a few forums from using this hack, use the same procedure, but add an ! in front of the in_array (to look like !in_array) and then the forum id numbers you use would be the forums that you don't want to apply the hack to. Depending on whether you're excluding or including more forums, you may use either method. Use the one that you'll have to type the least forum ids.