kitty plugin with gif support
This commit is contained in:
parent
23e0b9faeb
commit
87ea7b5771
@ -1,13 +1,20 @@
|
|||||||
local function run(msg, matches)
|
local function run(msg, matches)
|
||||||
local receiver = get_receiver(msg)
|
local receiver = get_receiver(msg)
|
||||||
local url = 'http://thecatapi.com/api/images/get'
|
local url = 'http://thecatapi.com/api/images/get'
|
||||||
|
local gif_url = 'http://thecatapi.com/api/images/get?type=gif'
|
||||||
|
if matches[1] == "gif" then
|
||||||
|
print("GIF URL: "..gif_url)
|
||||||
|
send_document_from_url(receiver, gif_url)
|
||||||
|
else
|
||||||
|
print("Bild URL: "..url)
|
||||||
send_photo_from_url(receiver, url)
|
send_photo_from_url(receiver, url)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
return {
|
return {
|
||||||
description = "Sendet ein zufälliges Katzenbild",
|
description = "Sendet ein zufälliges Katzenbild",
|
||||||
usage = {"/kitty","/katze","/cat","/neko","/kadse"},
|
usage = {"/kitty","/katze","/cat","/neko","/kadse"},
|
||||||
patterns = {"^/kitty$","^/katze$","^/cat$","^/neko$","^/kadse$"},
|
patterns = {"^/kitty$","^/katze$","^/cat$","^/neko$","^/kadse$","^/kitty (.*)$","^/katze (.*)$","^/cat (.*)$","^/neko (.*)$","^/kadse (.*)$",},
|
||||||
run = run
|
run = run
|
||||||
}
|
}
|
||||||
--by Akamaru [https://ponywave.de]
|
--by Akamaru [https://ponywave.de]
|
Reference in New Issue
Block a user