Here ya go. Not tested. I'm just doing it in few mins now.
Open newthread.php
below require("./global.php"); add
Quote:
$needthismuch = "5"; // Amount of posts needed to make thread
|
then all the way at the bottom find
Quote:
eval("dooutput(\"".gettemplate("newthread")."\");" );
|
and replace it with
Quote:
if ($bbuserinfo[posts] < $needthismuch){
eval("standardredirect(\"".gettemplate("needposts" )."\",\"index.php\");");
}else{
eval("dooutput(\"".gettemplate("newthread")."\");" );
}
|
Downside to this hack. Applies to mods, admins, everyone. So as soon as he replies to 5 threads in my example he can make new threads. Done..

should work