Einfaches Z0R Plugin

This commit is contained in:
Akamaru 2016-06-09 21:29:23 +02:00
parent 14f9064c6f
commit e5fcce9cbe
1 changed files with 19 additions and 0 deletions

19
plugins/z0r.lua Normal file
View File

@ -0,0 +1,19 @@
local function run(msg, matches)
local receiver = get_receiver(msg)
local url = 'http://z0r.de/L/z0r-de_'..matches[1]..'.swf'
print("Flash URL: "..url)
send_document_from_url(receiver, url)
if string.match(msg.text, '/[Zz]0[Rr]') then
return 'Source: http://z0r.de/'..matches[1]
else
return
end
end
return {
description = "Sendet Flashs von Z0R.de",
usage = {"z0r.de URL","/z0r [ID]"},
patterns = {"https?://z0r.de/([%w-_%.%?%.:,/%+=&#!]+)$","^/[Zz]0[Rr] (.*)$"},
run = run
}
--by Akamaru [https://ponywave.de]