Hopefully this helps you out a bit
This is from one of my modifications (Staff Application) where it creates the threads
PHP Code:
require_once(DIR . '/includes/functions_newpost.php');
$forumid = $vbulletin->options['usml_staffapp_forumid'];
$user_id = $vbulletin->userinfo['userid'];
$username = $vbulletin->userinfo['username'];
$target_foruminfo = fetch_foruminfo($forumid);
$newpost = array(
'userid' => $user_id,
'username' => $username,
'message' => $postappmsg,
'title' => $subject,
'poststarttime' => TIMENOW,
'emailupdate' => 0
);
build_new_post('thread', $target_foruminfo, array(), array(), $newpost, $errors);
if (sizeof($errors) > 0) { $error_info = construct_errors($errors); }
require_once(DIR . '/includes/functions_databuild.php');
build_forum_counters($forumid);