I have this working on 3.8.7 and added a conditional to exclude stickies and it seems to be working fine so far
Quote:
<hookname>newreply_start</hookname>
<phpcode><![CDATA[if (($threadinfo['lastpost'] < (TIMENOW - 2592000)) AND !$thread['sticky'] AND ($vbulletin->userinfo[usergroupid]!=6 AND $vbulletin->userinfo[usergroupid]!=5))
|
Quote:
<hookname>showthread_getinfo</hookname>
<phpcode><![CDATA[if ($thread['lastpost'] < (TIMENOW - 2592000) AND !$thread['sticky'])
|
Quote:
<hookname>threadbit_process</hookname>
<phpcode><![CDATA[if (($thread['lastpost'] < (TIMENOW - 2592000))AND $thread['open']AND !$thread['sticky']) {
|
Hope that helps someone