Project

General

Profile

[Feature Suggestion] Highlight alert for activity from a channel ?

Added by RoestVrijStaal ~~~ over 11 years ago

Is it possible to add a personal channel to the highlight list, so AdiIRC fires a highlight notification when someone else speaks in that channel?
I'm op of a channel which isn't that very much visited, but when people are in and start to talk, I rather like to get informed when they do.


Replies (5)

RE: [Feature Suggestion] Highlight alert for activity from a channel ? - Added by Per Amundsen over 11 years ago

There is an option to highlight on channel activity, but you want it to only highlight one specific channel right ?

RE: [Feature Suggestion] Highlight alert for activity from a channel ? - Added by RoestVrijStaal ~~~ over 11 years ago

Well, I just want to get notified when someone says something in one specific channel (or more). I have some support channels where I'm (H)OP, so for me it could be handy when I get a notification when someone says something in those channels while AdiIRC is hidden in the taskbar, or a different channel window has the full focus.

However this sounds like an already implemented feature, I didn't mean that one. I'm also on a couple regularly visited channels, so turning the option on to launch an alarm on channel activity, makes me drive crazy because the busy channels will fire up alarms as well.

RE: [Feature Suggestion] Highlight alert for activity from a channel ? - Added by Per Amundsen over 11 years ago

yeah thats what I mean, would a script be good enough ?

RE: [Feature Suggestion] Highlight alert for activity from a channel ? - Added by Per Amundsen about 11 years ago

Just in case you still need it, if you go to Tools -> Edit Scripts and enter:

on *:TEXT:*:#CHANNEL:{
    if ($active != #CHANNEL) {
        /msg $me $nick typed $1- on #CHANNEL
    }
}

Replace #CHANNEL with the name of your channel and you will highlight yourself, it can be extended for more channels if you need :)

If you want another way to be notified, just let me know, and ill figure something out.

RE: [Feature Suggestion] Highlight alert for activity from a channel ? - Added by RoestVrijStaal ~~~ about 11 years ago

Hey Thank you very much. This script does indeed what I want.

    (1-5/5)