commit
2253dc712e
26
bot/bot.lua
26
bot/bot.lua
@ -28,9 +28,9 @@ function rmtmp_cb(file_path, success, result)
|
|||||||
end
|
end
|
||||||
|
|
||||||
function msg_valid(msg)
|
function msg_valid(msg)
|
||||||
--if msg.from.id == our_id then
|
-- if msg.from.id == our_id then
|
||||||
-- return false
|
-- return true
|
||||||
--end
|
-- end
|
||||||
if msg.out then
|
if msg.out then
|
||||||
return false
|
return false
|
||||||
end
|
end
|
||||||
@ -194,10 +194,16 @@ now = os.time()
|
|||||||
plugins = {}
|
plugins = {}
|
||||||
|
|
||||||
-- load all plugins in the plugins/ directory
|
-- load all plugins in the plugins/ directory
|
||||||
for k, v in pairs(scandir("plugins")) do
|
function load_plugins()
|
||||||
if not (v:sub(0, 1) == ".") then
|
plugins = {}
|
||||||
print("Loading plugin", v)
|
for k, v in pairs(scandir("plugins")) do
|
||||||
t = loadfile("plugins/" .. v)()
|
if not (v:sub(0, 1) == ".") then
|
||||||
table.insert(plugins, t)
|
print("Loading plugin", v)
|
||||||
end
|
t = loadfile("plugins/" .. v)()
|
||||||
end
|
table.insert(plugins, t)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
load_plugins()
|
||||||
|
|
||||||
|
13
plugins/reload.lua
Normal file
13
plugins/reload.lua
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
|
||||||
|
function run(msg, matches)
|
||||||
|
load_plugins()
|
||||||
|
return 'Plugins reloaded'
|
||||||
|
end
|
||||||
|
|
||||||
|
return {
|
||||||
|
description = "Reloads bot plugins",
|
||||||
|
usage = "!reload",
|
||||||
|
patterns = {"^!reload$"},
|
||||||
|
run = run
|
||||||
|
}
|
||||||
|
|
Reference in New Issue
Block a user