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/echo.lua
topkecleon 566086c64d added error handling
added last.fm plugin
added currency conversion plugin
fixed loop bug in gImages
echo no longer replies
added blacklist feature
more flexible moderation.lua commands
2015-08-04 16:11:55 -04:00

24 lines
290 B
Lua

local PLUGIN = {}
PLUGIN.doc = [[
/echo <text>
Repeat a string.
]]
PLUGIN.triggers = {
'^/echo'
}
function PLUGIN.action(msg)
local input = get_input(msg.text)
if not input then
return send_msg(msg, PLUGIN.doc)
end
send_message(msg.chat.id, latcyr(input))
end
return PLUGIN