MyBB Community Forums

Full Version: Thread flood?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I know you can change post flood, but I ONLY want to enable a flood for posting threads. Is this possible?
How about adding a field "user_last_posttime" and every time a users posts this field will be updated with the date the thread was made then when he tries to post just while checking everything u add the code wich will check how many secs,minutes and everything have pased since user's last thread etc..., simple Smile
So basically he is saying only with a mod Wink
Yes
Also i cant code mods or mybb yet i can only explain them(etc say what they can do)
If you want to remove the post flooding check (ie make it only apply to threads), you can do this:
open up inc/datahandlers/post.php
find and delete:
		if($this->method != "update" && !$post['savedraft'])
		{
			$this->verify_post_flooding();
		}