The Arcive of vBulletin Modifications Site. |
|
|
#1
|
|||
|
|||
|
Is there a way to require a # of posts before you can make a thread? Like you must have 5 posts before you can make a thread?
|
|
#2
|
|||
|
|||
|
I don't know if there's some standard option to do that, but assuming there isn't you could create a plugin using the newthread_start hook with code something like:
Code:
$min_posts = 10;
if ($vbulletin->userinfo['posts'] < $min_posts)
{
eval(standard_error("You must have ".$min_posts." posts before you can start a thread."));
}
|
![]() |
|
|
| X vBulletin 3.8.12 by vBS Debug Information | |
|---|---|
|
|
More Information |
|
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|