Hmmm perhaps i was not clear, im trying to work ajax chat into vBulletin. Making it into a custom mod so that it can be viewed right from the vBulletin pages.
anyone have any ideas on how to do something like that? I'm new with the plug in system.... so far i added a plug in
Code:
ob_start();
include('/home/choas0/public_html/vb/chat/index.php');
$includedphp = ob_get_contents();
ob_end_clean();
and i am trying to call the ajax chat on custom page i made. The page works perfectly now i just have to figure out how to add the chat to that custom page.