Quote:
Originally Posted by 006
 Well it took me a long time. As for using it for a forum, I actually use a variation of it for many things on my board. It get's tricky though and I don't have time to support variations of it. Just look at the code. Basically you'll add the tables again with different names. Then add everything else again. You'll need an "if" statement asking for the forumid you want to limit access to. This will go in forumdisplay.php. That's off the top of my head so don't quote me on it. Like I said though I don't have time to create custom mods. :ermm:
~006
|
Nah, it was actually pretty simple for what I wanted to do.. I just edited showthread.php and forumdisplay.php with something like:
Code:
if ($bbuserinfo['posts'] < 100 AND $foruminfo[forumid]==14)
{
eval(print_standard_error('notforyou'));
}
and add a phrase to print_standard_error called notforyou..

Thanks though..