PDA

View Full Version : Server-Side Posting Bot


GGLeague
07-25-2008, 02:58 PM
Provided I have the ID of the forum I want to do this in and have administrative priviliges, how do I format a query to create a post on 3.7.2? I will get ahold of the custom pages mod, make a form, and once it's submitted (i'd like to use the standard vbulletin redirect page once it's submitted by the way), have the bot post it in my forum in my desired layout.
Thanks =]

RLShare
07-25-2008, 03:05 PM
Use the data manger....

If its a post for an existing thread...



$postdm =& datamanager_init('Post', $vbulletin, ERRTYPE_ARRAY, 'threadpost');

$timenow = TIMENOW ;
$threadinfo = fetch_threadinfo($threadid);

$foruminfo = fetch_foruminfo($threadinfo['forumid']);

$postdm->set_info('forum', $foruminfo);
$postdm->set_info('thread', $threadinfo);
$postdm->set('threadid', $threadid);
$postdm->set('title', $title);
$postdm->set('userid', $userid);
$postdm->set('pagetext', $message);
$postdm->set('allowsmilie', 1);
$postdm->set('visible', 1);
$postdm->set('dateline', $timenow);


if($postdm->errors){
There was an error
$postdm->errors is an array of errors
}
else{
$postdm->save();;
}



For new threads...



$threaddm =& datamanager_init('Thread_FirstPost', $vbulletin, ERRTYPE_ARRAY, 'threadpost');



$foruminfo = fetch_foruminfo($forumid);
$threaddm->set_info('forum', $foruminfo);

$threaddm->set('forumid', $foruminfo['forumid']);
$threaddm->set('userid', $userid);
$threaddm->set('title', $title);
$threaddm->set('pagetext', $message);
$threaddm->set('allowsmilie', 0);
$threaddm->set('visible', 1);
$threaddm->set('dateline', TIMENOW);


if($threaddm->errors){
There was an error
$threaddm->errors is an array of errors
}
else{
$threaddm->save();
}

GGLeague
07-25-2008, 04:35 PM
nevermind about the include. thanks.

--------------- Added 1217092700 at 1217092700 ---------------

How can I move a thread provided I have the threadid?