From d3ea32464a4022dc8f4b5f93b6baa5ec62c3f402 Mon Sep 17 00:00:00 2001 From: Akamaru Date: Fri, 3 Jul 2015 14:48:01 +0200 Subject: [PATCH] added nbc, idc, lf and lod to specials.lua --- plugins/special.lua | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/plugins/special.lua b/plugins/special.lua index 2c51e28..51eb74e 100644 --- a/plugins/special.lua +++ b/plugins/special.lua @@ -26,6 +26,14 @@ function run(msg, matches) ಠ___ಠ Back. (╮°-°)╮┳━┳ (╯°□°)╯︵ ┻━┻ NEVER]] + elseif string.match(msg.text, "^/[N|n][B|b][C|c]$") then + return [[¯\_(ツ)_/¯]] + elseif string.match(msg.text, "^/[I|i][D|d][C|c]$") then + return [[¯\_(ツ)_/¯]] + elseif string.match(msg.text, "^/[L|l][F|f]$") then + return '(͡° ͜ʖ ͡°)' + elseif string.match(msg.text, "^/[L|l][O|o][D|d]$") then + return 'ಠ_ಠ' end end @@ -41,7 +49,11 @@ return { "^[N|n][I|i][S|s][S|s][A|a][N|n]$", "^/[N|n][E|e][O|o][R|r][A|a][M|m][E|e]$", "^/[N|n][A|a][U|u]$", - "^/[F|f][T|t][T|t]$" + "^/[F|f][T|t][T|t]$", + "^/[N|n][B|b][C|c]$", + "^/[I|i][D|d][C|c]$", + "^/[L|l][F|f]$", + "^/[L|l][O|o][D|d]$" }, run = run }