ohohoh, relativly simple, but long to describe
ok, i think some of the things i'll explain now
in newthread.php find this:
PHP Code:
eval("dooutput(\"".gettemplate("newthread")."\");");
before it put this:
PHP Code:
if ($forumid==x) {
eval("\$extrafields = \"".gettemplate("newthread_extrafields")."\";");
} else {
$extrafields = "";
}
then create a new template called newthread_extrafields and put in the html-code for the inputboxes
after that add $extrafields into your newthread-template where you want this options.
That is the part, your extra options just appear in newthread, when forumid = x.