How can I get notified by everything that happens in a specific channel in irssi?

1

(Be it hilight/highlight or a beep). I have a small channel that I need to know all the info of. I couldn't get trigger.pl to work, but maybe it should. I could do "/hilight -mask every_single_nick" but that's not efficient enough (nor the Right Way).

edit:

Figured out a shaky solution. Have:

/set beep_msg_level ALL

/set bell_beeps ON

be enabled, but do /ignore -except #foo ALL

It prevents nick hilight sounds from other channels but it will work for me.

from: How can I ignore all JOINS, PARTS from all but a few channels?

m3hr

Posted 2013-04-03T22:01:38.170

Reputation: 89

on *:ACTION:*:# { beep } and on *:TEXT:*:# { beep } solves the issue? – Lorenzo Von Matterhorn – 2013-04-03T22:08:42.250

As its own Perl script? I'm not too familiar with Perl, but I guess I could learn. – m3hr – 2013-04-03T22:10:55.777

its IRC script actually, dunno if it applies to your case – Lorenzo Von Matterhorn – 2013-04-03T22:11:19.620

I'm interested in irssi; would that be relevant? – m3hr – 2013-04-03T22:11:51.890

if it has some sort of way to call a standart IRC script, yes it would. – Lorenzo Von Matterhorn – 2013-04-03T22:14:06.227

@Znau I believe those commands are mIRC specific, and based off of TCL.. I know they work on mIRC, but I could be wrong about the specific part. – cutrightjm – 2013-04-04T06:20:16.467

Answers

2

Download this: https://scripts.irssi.org/scripts/opnotify.pl

Type this:

/script load [pathtoscript]
/notify-on [nick]

Full list of scripts: Click

V.7

Posted 2013-04-03T22:01:38.170

Reputation: 140