From 004705ff1d0d227fa186384121fae939b9314e7d Mon Sep 17 00:00:00 2001 From: Joe Rayhawk Date: Sat, 24 Oct 2020 23:57:08 -0700 Subject: A handful of Irssi plugins. irssi-jtv.pl is able to repeat host information irssi-serverevent.pl is used for triggering or debugging based on ircv3 server events. --- irssi/irssi-jtv.pl | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 irssi/irssi-jtv.pl (limited to 'irssi/irssi-jtv.pl') diff --git a/irssi/irssi-jtv.pl b/irssi/irssi-jtv.pl new file mode 100644 index 0000000..e9e72f5 --- /dev/null +++ b/irssi/irssi-jtv.pl @@ -0,0 +1,29 @@ +use Irssi 0.8.10 (); +use strict; + +use vars qw($VERSION %IRSSI); + +$VERSION="0.1.7"; +%IRSSI = ( + authors=> 'jrayhawk', + name=> 'jtv', + description=> 'repeats JTV information', + license=> 'GPL v2', +); + +sub jtv_say { + my ($server, $msg, $nick, $address) = @_; + + return if ($nick ne 'jtv'); + + return if ($msg !~ /(.+) is now hosting you for (.+) viewers\./ ); + + open(FILE, "~/.config/twitch/channel"); + my $channel = ; + $channel = chomp($channel); + close(FILE); + + $server->command("msg $channel Welcome, $2 viewers! Thanks for the host, $1!"); +} + +Irssi::signal_add_last('message private', 'jtv_say'); -- cgit v1.2.3