If anyone is interested in getting thread replies:
Create a new plugin.
Product: GCBOS
Hook Location: postdata_postsave
Title: New reply
Execution Order: 5
Plugin PHP Code:
PHP Code:
require_once(DIR . '/includes/class_gcbos.php');
$gcbos = new GCBOS();
global $vbulletin;
if ($vbulletin->options['gcbos_forum_alert'] == 1 && !in_array($this->info['forum']['forumid'], (array)explode(';', $vbulletin->options['gcbos_forum_exceptions'])))
{
$titleprefix = '[post=' . intval($this->fetch_field('postid')) . ']';
$titlesuffix = '[/post]';
$gcbos->create_message('replied to the thread ' . $titleprefix . unhtmlspecialchars($this->info['thread']['title']) . $titlesuffix, $vbulletin->userinfo['userid'], TIMENOW, 0, GCBOS_MESSAGE_TYPE_NORMAL, $vbulletin->userinfo['userid']);
}