oh, a quick and dirty hack you could do yourself if i dont come through for you~
find in dorms.php...
PHP Code:
if(!$bbuserinfo[userid]) print_no_permission();
now, usergroups have certain id numbers, which you can find by hovering links in the acp usergroup screen. so if you want to restrict it to certain groups, find the number (ill call it X for my example) then edit that line to be...
PHP Code:
if(!$bbuserinfo[userid] and $bbuserinfo[usergroupid]!=X) print_no_permission();
this will restrict the page from being accessed by any usergroup that isnt X (which i assume would be your subscrber group, or any existing one you might want) also, you can allow more than one, by just finding out the extra groups' numbers (Y and Z for the example) and adding more and etc's to the code...
PHP Code:
if(!$bbuserinfo[userid] and $bbuserinfo[usergroupid]!=X and $bbuserinfo[usergroupid]!=Y and $bbuserinfo[usergroupid]!=Z) print_no_permission();
this isnt confusing is it? like i said, this is the less elegant way to get what you want in case i cant find time to do it elegantly :-p