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-2/plugins/luarun.lua

34 lines
591 B
Lua
Raw Normal View History

local triggers = {
'^/lua[@'..bot.username..']*'
}
local action = function(msg)
if msg.from.id ~= config.admin then
return
end
local input = utilities.input(msg.text)
if not input then
sendReply(msg, 'Please enter a string to load.')
return
end
local output = loadstring(input)()
if output == nil then
2015-12-14 20:48:17 +01:00
output = 'Done!'
elseif type(output) == 'table' then
output = 'Done! Table returned.'
2015-12-14 20:48:17 +01:00
else
output = '```\n' .. tostring(output) .. '\n```'
2015-12-14 20:48:17 +01:00
end
sendMessage(msg.chat.id, output, true, msg.message_id, true)
end
return {
action = action,
triggers = triggers
}