You got excited my friend
Here is the code which require min post to view a forum (default by tnguy3n - Required X Posts to Make New Thread in Y Forum(s)
Support:
http://www.vbviet.org )
[xml]<hookname>forumdisplay_start</hookname>[/xml]
PHP Code:
// min post required to create thread
$minpost = 5;
// special groups which isn't restricted by this hack
$specialgroups = array(5,6,7);
// forums where this rule effects, use commas to seperate multiple forums
$forumid_req_minpost = array(2);
if (!in_array($vbulletin->userinfo['usergroupid'], $specialgroups) AND ($vbulletin->userinfo[posts]< $minpost) AND in_array($foruminfo['forumid'], $forumid_req_minpost))
{
standard_error(fetch_error('cant_create_thread_without_x_posts'));
}
// end mim post to create new thread
this script works fine but still show the forum which user has less than X posts, I don't know how to add script to Hide the X Forums
Please can someone help me?
Thank you

and sorry for my bad English