aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Phillips <david@sighup.nz>2017-03-07 15:02:34 +1300
committerDavid Phillips <david@sighup.nz>2017-03-07 15:02:34 +1300
commit1fa355a0a01751f5914c7cdcc3cac1eb470a10c2 (patch)
treeb824e9792c2600ad8ed3152b1e686f493c7dadb5
parentcd701884e59f533e1ce31dc86cc2a3182d36aa64 (diff)
downloadidalius-1fa355a0a01751f5914c7cdcc3cac1eb470a10c2.tar.xz
Add simple join/part to remote control
-rwxr-xr-xsaxrobot16
1 files changed, 16 insertions, 0 deletions
diff --git a/saxrobot b/saxrobot
index da51f8f..ae7e4f3 100755
--- a/saxrobot
+++ b/saxrobot
@@ -92,6 +92,22 @@ sub irc_msg {
$irc->yield(privmsg => $nick => "I am bot, go away");
return;
}
+ if ($what =~ /^part\s/) {
+ my ($channel) = $what =~ /^part\s+(\S+)$/;
+ if ($channel) {
+ $irc->yield(part => $channel);
+ } else {
+ $irc->yield(privmsg => $nick => "Syntax: part <channel>");
+ }
+ }
+ if ($what =~ /^join\s/) {
+ my ($channel) = $what =~ /^join\s+(\S+)$/;
+ if ($channel) {
+ $irc->yield(join => $channel);
+ } else {
+ $irc->yield(privmsg => $nick => "Syntax: join <channel>");
+ }
+ }
if ($what =~ /^say\s/) {
my ($channel, $message) = $what =~ /^say\s+(\S+)\s(.*)$/;
if ($channel and $message) {