Reviving this one as I have a question. I use this but now I'd like to expand upon it.
What if I wanted one group to have one flood control time, and another to have a different time? Would I simply make two plugins, or would I just do this in the plugin I currently use?
Code:
if (is_member_of($vbulletin->userinfo, X))
{
$vbulletin->options['floodchecktime'] = 5;
}
if (is_member_of($vbulletin->userinfo, y))
{
$vbulletin->options['floodchecktime'] = 10;
}