This repository has been archived on 2021-04-24. You can view files and clone it, but cannot push or open issues or pull requests.
Mikubot/plugins/kitty.lua

20 lines
658 B
Lua

local function run(msg, matches)
local receiver = get_receiver(msg)
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)
end
end
return {
description = "Sendet ein zufälliges Katzenbild",
usage = {"#kitty","#katze","#cat","#neko","#kadse"},
patterns = {"^#kitty$","^#katze$","^#cat$","^#kadse$","^#kitty (.*)$","^#katze (.*)$","^#cat (.*)$","^#kadse (.*)$",},
run = run
}
--by Akamaru [https://ponywave.de]