OK, I tried that, but with no luck. I also removed the code to check and see if you were in the admin array and the same results. This narrows it down to not calling the forum ID, not counting the posts or not using my hooks appropriately.
Any other ideas? Here's my latest code:
Code:
<plugins>
<plugin active="1" executionorder="5">
<title>Minimum number of posts to post links.</title>
<hookname>forumdisplay_start</hookname>
<phpcode><![CDATA[global $vbulletin, $foruminfo;
$newbieid = '814';
$maxposts = 150;
if($foruminfo['forumid'] == $newbieid)
{
if ($vbulletin->userinfo['posts'] > $maxposts)
{
standard_error(fetch_error('numposts_message', $vbulletin->userinfo['username'], $vbulletin->userinfo['posts']));
}
}
}]]></phpcode>
</plugin>
</plugins>
<phrases>
<phrasetype name="Error Messages" fieldname="error">
<phrase name="numposts_message"><![CDATA[An error has occurred {1}! You must have 150 or fewer posts in order view this forum. Your current post count is {3}.]]></phrase>
</phrasetype>
</phrases>