yes you can add another field in the usergrouptable called floodchecktime, then you have to add the editfields for that in usergroup.php (not so hard isn't it)
and then in newreply.php:
find:
PHP Code:
if ($enablefloodcheck) {
if ($bbuserinfo[userid]!=0 and time()-$bbuserinfo[lastpost]<=$floodchecktime and !ismoderator($foruminfo[forumid])) {
eval("standarderror(\"".gettemplate("error_floodcheck")."\");");
exit;
}
}
and replace it with:
PHP Code:
if ($enablefloodcheck) {
$floodtime=$DB_site->query_first("SELECT floodchecktime FROM usergroup WHERE usergroupid=".$bbuserinfo[usergroupid]);
if ($bbuserinfo[userid]!=0 and time()-$bbuserinfo[lastpost]<=$floodtime[floodchecktime]) {
eval("standarderror(\"".gettemplate("error_floodcheck")."\");");
exit;
}
}
so also your admins/mods are floodchecked