Neues Plugin imgur.lua
This commit is contained in:
parent
31c792468d
commit
47590c6cdc
2
.gitignore
vendored
2
.gitignore
vendored
@ -6,3 +6,5 @@ plugins/licht.lua
|
||||
plugins/dantest.lua
|
||||
plugins/stats2.lua
|
||||
plugins/help2.lua
|
||||
plugins/pegelf_img.lua
|
||||
plugins/plex.lua
|
14
plugins/imgur.lua
Normal file
14
plugins/imgur.lua
Normal file
@ -0,0 +1,14 @@
|
||||
local function run(msg, matches)
|
||||
local receiver = get_receiver(msg)
|
||||
local url = 'http://i.imgur.com/'..matches[1]..'.jpg'
|
||||
print("Bild URL: "..url)
|
||||
send_photo_from_url(receiver, url)
|
||||
end
|
||||
|
||||
return {
|
||||
description = "Imgur Mirror",
|
||||
usage = {"Imgur Link"},
|
||||
patterns = {"imgur.com/([A-Za-z0-9]+)$",},
|
||||
run = run
|
||||
}
|
||||
--by Akamaru [https://ponywave.de]
|
Reference in New Issue
Block a user