you can also make it so it at least by passes the forum leaders
find:
PHP Code:
$minchars = 15;
if (strlen($message) < $minchars and $minchars !=0) {
eval("standarderror(\"".gettemplate("error_tooshort")."\");");
}
change it to:
PHP Code:
$minchars = 15;
if($strlen($message) < $minchars and $minchars != 0) {
if($bbuserinfo[usergroupid] != 5 OR $bbuserinfo[usergroupud] != 6 OR $bbuserinfo[usergroupid] != 7) {
eval("standarderror(\"".gettemplate("error_tooshort")."\");");
}
}
wait look at that addon O_o maybe i should release it as a stand alone... then again it is included in my spam killer
regards...
g-force2k2