Project

General

Profile

[Script] See all channels in current active channel. Port of old MIRC script made by psicom

Added by Jared Ionin over 1 year ago

Hi, I am just sharing this, apologies if I am doing it wrong, but below is the script. The script allows you to see all current activity in your active window.

I find this to be very helpful and one of the main reasons I moved to AdiIRC was its support of old mirc scripts. I could not IRC without this as flipping between windows/channels to see what is going on is jut annoying and I like to see everything in one. Yes, at times that may be overwhelming, but majority of channels are not all active at once. Plus I use a monitor with an x1600 resolution, so I get a lot of vertical space.

Here is the script (couldn't find where this gets stored to attach anything to?) - hope I am doing this right as I didn't check for any guidelines or anything.

;%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
;script Channel Spy
;version 1.1
;author Ionizer
;email
;%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
;
;This script handles channel messages like BitchX does.
;Whatever window you are currently in will receive any messages
;from those channels that you are currently sitting in.

alias spacealign {
return $str($instok($chr(15),$chr(15),$chr(1),32),$1)
}

on 1:text:*:# {
if (($chan != $active) && ($window($active).stamp == $true)) {
echo $window($active) $chr(91) $+ $asctime(HH:nn) $+ $chr(93) $+ $spacealign(1) $+ < $+ $+ $chan $+ $+ : $+ $nick $+ > $1- }
elseif ($chan != $active) {
echo $window($active) < $+ $+ $chan $+ $+ : $+ $nick $+ > $1-
}
}

If you can think of any improvements or see any issues with the above, please let me know


Replies (5)

RE: [Script] See all channels in current active channel. Port of old MIRC script made by psicom - Added by Per Amundsen over 1 year ago

You should put your script inside <pre>code</pre> tags, otherwise the formatting is messed up.

You could also just use the Channel Messages Monitor Panel.

RE: [Script] See all channels in current active channel. Port of old MIRC script made by psicom - Added by Jared Ionin over 1 year ago

im not clear what the channel messages monitor panel does. is it not intended for specific things to monitor as opposed to all messages in a channel?

this script allows you to just see messages posted elsewhere, does the channel monitor do that as well and can you do it for all channels by default or do you have to configure each one manually?

RE: [Script] See all channels in current active channel. Port of old MIRC script made by psicom - Added by Per Amundsen over 1 year ago

It monitors all messages on all channels on all servers by default.

RE: [Script] See all channels in current active channel. Port of old MIRC script made by psicom - Added by Jared Ionin over 1 year ago

interesting, ill need to play around with it. so i can disable things like seeing modes/kicks/joins, etc from it as well? i only want to see messages.

RE: [Script] See all channels in current active channel. Port of old MIRC script made by psicom - Added by Per Amundsen over 1 year ago

Yes, in Options -> Monitor Panels -> Events.

Note: it is possible to undock the panel into a stand alone window, then dock/attach it similar to your @custom window.

    (1-5/5)