diff options
author | David Phillips <david@yeah.nah.nz> | 2018-10-02 19:28:33 +1300 |
---|---|---|
committer | David Phillips <david@yeah.nah.nz> | 2018-10-02 19:28:33 +1300 |
commit | dccfaa9929abae4f5d00dbcb4bbbb404bd50daf1 (patch) | |
tree | 7be16811b6efb46a0426a4d57db4dc311d22bd29 /Plugin | |
parent | 5545685353d1ba4ddeccbe4c8658da4674127d33 (diff) | |
download | idalius-dccfaa9929abae4f5d00dbcb4bbbb404bd50daf1.tar.xz |
Natural: add more
Diffstat (limited to 'Plugin')
-rw-r--r-- | Plugin/Natural.pm | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Plugin/Natural.pm b/Plugin/Natural.pm index 64cc755..d61ec23 100644 --- a/Plugin/Natural.pm +++ b/Plugin/Natural.pm @@ -43,6 +43,12 @@ sub choose_response { return some("$nick: shush yourself", "shut up, $nick", "nou $nick", "sorry $nick", ":("); } elsif ($what =~ /\b(fuck\s+(off?|you|u)|fucking)\b/i) { return some("$nick: take your meds", "stop harassing me", "ease up on the drink, mate", "ooh big boy angry $nick has come out to play"); + } elsif ($what =~ /\b(lol|g(g|j))\b/i) { + return some(":)", ":D"); + } elsif ($what =~ /\bstop(|\s+it)\b/i) { + return some(":(", "fine", "whatever, dude", "god"); + } elsif ($what =~ /\bhelp\b/i) { + return some("D:", "ono"); } return; } |