I dont have it yet,
here is example php misc_start hook:
PHP Code:
if ($_REQUEST['do'] == 'xml') { require_once DIR . '/includes/class_xml.php'; $xml = new vB_AJAX_XML_Builder($vbulletin, 'text/xml'); $xml->add_group('users');
$users = $db->query_read_slave(" SELECT user.userid, user.username FROM " . TABLE_PREFIX . "user AS user ORDER BY username LIMIT 15 "); while ($user = $db->fetch_array($users)) { $xml->add_tag('user', $user['username'], array('userid' => $user['userid'])); }