there is one thing so far that i do not like, its the fact that if there are enough messages to warrent a scroll bar it pops back to the top of the page so i have to scroll back down. When it gets populated it might be a problem
EDIT: It also does this when it refreshes too
EDIT2: my little temp fix is to limit the number of messages i changed in vbchat.php;
Code:
left join ".TABLE_PREFIX."user u on (u.userid = m.s_postby) order by m.s_postime desc limit 0,15");
into
Code:
left join ".TABLE_PREFIX."user u on (u.userid = m.s_postby) order by m.s_postime desc limit 0,13");