I'm playing with this on my test site. I only wanted to change the first post for one of my forums though. I created a plugin at "postbit_display_complete" and put in:
PHP Code:
if ($this->forum['forumid']==xx AND $post['postid']==$this->thread['firstpostid'])
{
$this->templatename = 'postbit_new';
}
In this example, xx is the forum I am using this in and I copied the postbit_legacy template and modified it and named it 'postbit_new'. It's very simple and works just fine.