Created
February 27, 2013 23:32
-
-
Save cmatheson/5052865 to your computer and use it in GitHub Desktop.
jerkins!!! (irssi plugin)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use strict; | |
Irssi::command_bind jerkins => sub { | |
my ($data, $server, $witem) = @_; | |
return unless $witem; | |
my $poo = ":poop: :persevere: :poop:"; | |
$server->send_raw( | |
"PRIVMSG $witem->{name} :$poo http://ryanflorence.com/gifs/jenkins.gif $poo" | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment