View Full Version : Exclude Usergroup from Min Time between posts
OakleyBoss
09-26-2012, 06:57 PM
I have a usergroup which I would like to lower the minimum time between posts for. The current board wide time is 30 seconds, and I would like to make it 5 seconds for one specific usergroup. I tried finding a mod on here but all of them were outdated. Can anyone help with this? It doesn't seem like it should be that hard. I am running 4.2.0 PL2
Thanks,
It's likely that one of the older mods would work since it's pretty simple. But you could do this: create a plugin using hook global_bootstrap_complete and this code:
global $vbulletin;
if (is_member_of($vbulletin->userinfo, X, Y, Z))
{
$vbulletin->options['floodchecktime'] = 5;
}
(of course you want to change X, Y, Z to one or more usergroup ids).
Edit: Now that I look at the Similar Threads below I see this one for vb4: https://vborg.vbsupport.ru/showthread.php?t=243883
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.