Try this code instead:
PHP Code:
$hv_forums = array(1, 2, 3); // fset to forum ids where hv is required
if ((THIS_SCRIPT == 'newthread' AND in_array($foruminfo['forumid'], $hv_forums)) OR
(THIS_SCRIPT == 'showthread' AND in_array($threadinfo['forumid'], $hv_forums)) OR
(THIS_SCRIPT == 'newreply' AND in_array($threadinfo['forumid'], $hv_forums)))
{
$vbulletin->options['hvcheck'] |= ($vbulletin->bf_misc_hvcheck['post']);
}