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
Andreas Bielawski 4cbe28ea93 - Echo: Erlaube Markdown (nicht in Supergruppen)
- Entferne orderdPairs(), da .getn deprecated ist
2016-06-19 22:14:54 +02:00

33 lines
695 B
Lua

local echo = {}
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>
Repeats a string of text.
```]]
end
function echo:action(msg)
local input = utilities.input(msg.text)
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
output = '*Echo:*\n"' .. utilities.md_escape(input) .. '"'
end
utilities.send_message(self, msg.chat.id, input, true, nil, true)
end
end
return echo