test with patterns

This commit is contained in:
Akamaru 2015-06-02 21:53:29 +02:00
parent 975334f28b
commit 2deb795a35
3 changed files with 10 additions and 7 deletions

View File

@ -4,8 +4,8 @@ end
return {
description = "Nyu?",
usage = {"nyu","Nyu"},
patterns = {"^nyu","^Nyu"},
usage = {"nyu"},
patterns = {"^[N|n][Y|y][U|u]$"},
run = run
}
--by Akamaru [https://ponywave.de]

View File

@ -1,11 +1,14 @@
function run(msg, matches)
if matches[1] == "nairaderp" then
send_document(get_receiver(msg), "sticker/naira_derp.webp", ok_cb, false)
elseif matches[1] == "facepalm" then
elseif matches[1] == "facepalm" then
send_document(get_receiver(msg), "sticker/facepalm.webp", ok_cb, false)
elseif matches[1] == "liste" then
return "nairaderp\nfacepalm"
end
elseif matches[1] == "all" then
return [[
/sticker nairaderp
/sticker facepalm
]]
end
end
return {

View File

@ -6,7 +6,7 @@ end
return {
description = "Sagt dass ihr wieder da seid",
usage = {"/wd"},
patterns = {"^/wd$"},
patterns = {"^/[w|W][d|D]$"},
run = run
}
--by Akamaru [https://ponywave.de]