MyBB Community Forums

Full Version: [request] number of posts before download
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is there a mod / can I request a mod that will not let people download if they don't have a certain amount of posts and a thread that members can not get into without a certain amount of posts
Bump
This would help me a lot too Smile
maybe u can try this

open attachment.php find:
if(!$attachment['aid'] || !$attachment['attachname'])
above it add:
if($mybb->user['postnum']<XX)
{
	error("Here insert your error message");
}
else
{
than add:
}
in very bottom above this
?>
tag
u can replace the xx to whatever postnumber u want.....^^

and u can also add a setting in admincp to set the postnumber limite

but thats a another story right...:p