Go to your Admin CP -> Plugin Manager -> Add a New Plugin
Product: vBulletin
Hook: newthread_start
Exe. Order: 5
Title: New Thread Template
PHP Code:
PHP Code:
if ($foruminfo['forumid'] == 2)
{
$newpost[message] = "This is a test message.";
}
change "2" to the forumid of the forum you want to enable this in...
Change the test message to the template you want. Use
\n for new lines.
Example:
Code:
$newpost[message] = "This is a line 1. \n This is line 2. \n This is line 3.";