New command added to youtube_search plugin
This commit is contained in:
parent
cc6b4d76f4
commit
22cff42b7b
@ -9,7 +9,7 @@ function on_msg_receive (msg)
|
|||||||
if msg_valid(msg) then
|
if msg_valid(msg) then
|
||||||
msg = pre_process_msg(msg)
|
msg = pre_process_msg(msg)
|
||||||
match_plugins(msg)
|
match_plugins(msg)
|
||||||
-- mark_read(receiver, ok_cb, false)
|
--mark_read(receiver, ok_cb, false)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
24
plugins/boersedown.lua
Normal file
24
plugins/boersedown.lua
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
socket = require("socket")
|
||||||
|
|
||||||
|
function cron()
|
||||||
|
-- Use yours desired web and id
|
||||||
|
local addr = "www.boerse.to"
|
||||||
|
local dest = "chat#id11215880"
|
||||||
|
-- Checks a TCP connexion
|
||||||
|
local connexion = socket.connect(addr, 80)
|
||||||
|
if not connexion then
|
||||||
|
local text = "boerse.to ist schon wieder Offline..."
|
||||||
|
print (text)
|
||||||
|
send_msg(dest, text, ok_cb, false)
|
||||||
|
else
|
||||||
|
connexion:close()
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
return {
|
||||||
|
description = "",
|
||||||
|
usage = "",
|
||||||
|
patterns = {},
|
||||||
|
run = nil,
|
||||||
|
cron = cron
|
||||||
|
}
|
@ -46,7 +46,8 @@ return {
|
|||||||
description = "Sucht ein Video auf YouTube und sendet es",
|
description = "Sucht ein Video auf YouTube und sendet es",
|
||||||
usage = "/youtube [Begriff]",
|
usage = "/youtube [Begriff]",
|
||||||
patterns = {
|
patterns = {
|
||||||
"^/youtube (.*)"
|
"^/youtube (.*)",
|
||||||
|
"^/yt (.*)"
|
||||||
},
|
},
|
||||||
run = run
|
run = run
|
||||||
}
|
}
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
|
||||||
function run_sh(msg)
|
function run_sh(msg)
|
||||||
name = get_name(msg)
|
name = get_name(msg)
|
||||||
text = ''
|
text = ''
|
||||||
@ -35,4 +36,4 @@ return {
|
|||||||
patterns = {"^/uptime", "^/sh (.*)$"},
|
patterns = {"^/uptime", "^/sh (.*)$"},
|
||||||
run = run,
|
run = run,
|
||||||
privileged = true
|
privileged = true
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user