I guess no one cared about my idea, so I developed it my self.
If anyone is interrested, here it is.
In the Post.php file find this line....
$bcinfo = mysql_fetch_array($request);
$curcat = $bcinfo['cid'];
$cat = $bcinfo['cname'];
$currentboard = $bcinfo['bid'];
$boardname = $bcinfo['bname'];
And add this code after it....
if($username == 'Guest' && $cat == 'Members Only' ) { fatal_error($txt[1]); }
Replace the text 'Members Only' with the name of whatever
category you want to be restricted.
Now, guests can read topics in the boards contained in the category but they can not reply or start a topic.
Purhaps this will give guests some incentive to join.
The hard-core PHP coders here could easyly turn this into a true mod with an admin option to enable, disable, or add restricted categorys.
