View Full Version : Flood Control by User Group
Michael2
08-16-2005, 09:20 AM
Specifically I'd like to remove the flood control for members in a certain user group. Any help would be appreciated, thanks!
Andreas
08-16-2005, 09:30 AM
Hook: global_start
if (is_member_of($vbulletin->userinfo, X))
{
$vbulletin->options['floodchecktime'] = 0;
}
TosaInu
10-03-2005, 09:31 AM
Hook: global_start
if (is_member_of($vbulletin->userinfo, X))
{
$vbulletin->options['floodchecktime'] = 0;
}
Hello KirbyDE,
I'm less than a novice. You go to the plugin manager, create a new Plugin, select Hook: global_start, paste this code in it, give the plugin any name, activate and save? Right?
What is it that goes into those plugins, just any PHP code including SQL queries? So what normally went into a vb PHP file when inserting a hack?
What I finally like to do is make a flood value for each usergroup. Would it be possible to do such a thing for searchflood and PM flood too? Is it possible to use another Hook to add these fields to each usergroup?
Edit: found most of the answers https://vborg.vbsupport.ru/showthread.php?t=96848
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.