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/otouto/plugins/echo.lua

32 lines
751 B
Lua
Raw Normal View History

local echo = {}
2016-06-07 06:31:34 +02:00
local utilities = require('otouto.utilities')
echo.command = 'echo <text>'
function echo:init(config)
echo.triggers = utilities.triggers(self.info.username, config.cmd_pat):t('echo', true).table
echo.doc = config.cmd_pat .. 'echo <text> \nRepeats a string of text.'
end
2015-07-03 00:15:52 +02:00
function echo:action(msg)
2015-07-03 00:15:52 +02:00
local input = utilities.input(msg.text)
2015-07-03 00:15:52 +02:00
if not input then
utilities.send_message(self, msg.chat.id, echo.doc, true, msg.message_id, true)
else
local output
if msg.chat.type == 'supergroup' then
2016-04-29 06:12:04 +02:00
output = '*Echo:*\n"' .. utilities.md_escape(input) .. '"'
else
output = utilities.md_escape(utilities.char.zwnj..input)
end
utilities.send_message(self, msg.chat.id, output, true, nil, true)
end
2015-07-03 00:15:52 +02:00
2015-07-03 00:15:52 +02:00
end
return echo