hmm, there is no hack out, and i didn't see the sense of it, but i can be done with one edit of newthread.php:
after that:
PHP Code:
$permissions=getpermissions($forumid);
if (!$permissions[canview] or !$permissions[canpostnew]) {
show_nopermission();
}
add that:
PHP Code:
if (in_array($forumid,array(2,3,4))) {
$threadcount=$DB_site->query_first("SELECT COUNT(*) AS count FROM thread WHERE forumid=$forumid");
if($threadcount[count]>=50) show_nopermission();
}