Quote:
Originally Posted by LeeWicKeD
hiho,
how do i change the amout of messages/lines that are shown in the chat?
LeeWicKeD
|
If you mean how many messages are shown all together, that's easy:
Find this in vBChat.php:
PHP Code:
$Get_Chat_MSG = $DB_site->query("select m.*,u.* from ".TABLE_PREFIX."vbchat_store m
left join ".TABLE_PREFIX."user u on (u.userid = m.s_postby) where m.s_forroom = '{$bbuserinfo['vbchat_pref_in_room']}' order by m.s_postime desc limit 0,15");
Change that 15 at the end to whatever you want. BUT THIS IS NOT how many lines are shown, it is how many lines are selected. How many lines are shown is a bit more involved.
Rgds