Quote:
TheEDIGuy said:
Feldon, if you *do* get around to re-creating version 2 (bummer, by the way), can you have the option to remove the IRCBrowse user out of the "in chat' list? I use "FORTbot" as my user, and obviously, it sits in the chatroom all day, reporting itself as being in chat.
|
I've been fiddling with mIRC scripts for about 4 years. I've been doing PHP for about 12 weeks. Sad isn't it, that I'd probably recommend fixing this in PHP instead of mIRC.
In your index.php, I'd change...
PHP Code:
$ircbrowsetotal = $ircbrowse['0'];
$ircbrowsehighest = $ircbrowse['1'];
$ircbrowsenicks = $ircbrowse['2'];
fclose ($tempfil);
to
PHP Code:
$ircbrowsetotal = $ircbrowse['0'];
$ircbrowsehighest = $ircbrowse['1'];
$ircbrowsenicks = str_replace("FORTbot, ", "", $ircbrowse['2']);
fclose ($tempfil);