Mmh did you use "parse_templates" as hook location? If yes then i don't know what's the problem maybe this one is a little tricky but it should 100% works
Hook: parse_templates
PHP Code:
$template = 'your template code';
require_once(DIR . '/includes/class_template_parser.php');
$parser = new vB_TemplateParser('{vb:raw messagearea}');
$parser->dom_doc = new vB_DomDocument($parser->fetch_dom_compatible());
$find = trim($parser->_parse_nodes($parser->dom_doc->childNodes()));
$parser = new vB_TemplateParser($template);
$parser->dom_doc = new vB_DomDocument($parser->fetch_dom_compatible());
$replace = trim($parser->_parse_nodes($parser->dom_doc->childNodes()));
$vbulletin->templatecache['newthread'] = str_replace($find, $replace, $vbulletin->templatecache['newthread']);
Put your template code in the template variable and remember to escape quotes!