just made a two small plugin for New Topic and Reply Notification in your chatbox, im still new to vbulletin scripting so i apologize if there is any mistakes
But I have been using it for a couple days fine
you must make a couple changes to it though once you install it, in BOTH plugins
alter line 2 or 3
that reads...
PHP Code:
if (!in_array($this->info['forum']['forumid'], array(105,83,121,110,82,112,109,101,102,72))) {
this will filter out private forums you don't want the public to see when a post is made, so add/remove the forumid's you wish to hide.
one last edit is the SQL insert in BOTH plugins, change the '2' to whatever userid you would like to show the posts as. I would setup a postbot and link it to that userid.
PHP Code:
$vbulletin->db->query_write("INSERT INTO `" . TABLE_PREFIX . "vsa_chatbox` (`userid`, `userip`, `message`, `dateline`, `textprop`) VALUES ('2', '".$_SERVER['REMOTE_ADDR']."', '" . $vbulletin->db->escape_string($message) ."', ".TIMENOW.", '');");
Thats all