Brohoof /)

This commit is contained in:
Akamaru 2016-08-29 21:01:07 +02:00
parent 1b0097aa9f
commit 47b2f6b8f7
2 changed files with 9 additions and 2 deletions

View File

@ -27,7 +27,10 @@ special.triggers = {
"^[Pp][Ee]$", "^[Pp][Ee]$",
"^[Vv][Aa]$", "^[Vv][Aa]$",
"^[Mm][Uu]$", "^[Mm][Uu]$",
"^/[Ii][Yy][Kk][Ww][Ii][Mm]$" "^/[Ii][Yy][Kk][Ww][Ii][Mm]$",
"^/%)$",
"^%(\\$"
} }
function special:action(msg, config, matches) function special:action(msg, config, matches)
@ -106,6 +109,10 @@ function special:action(msg, config, matches)
output = 'schi' output = 'schi'
elseif msg_text:match("/[Ii][Yy][Kk][Ww][Ii][Mm]") then elseif msg_text:match("/[Ii][Yy][Kk][Ww][Ii][Mm]") then
output = '(¬‿¬)' output = '(¬‿¬)'
elseif msg_text:match("/%)") then
output = '(\\'
elseif msg_text:match("%(\\") then
output = '/)'
end end
utilities.send_reply(msg, output) utilities.send_reply(msg, output)