188f14a842
+ Steam + Thetvdb + Translate + Twitch + Urbandictionary + Webshot - Hilfe bei Echo angepasst
31 lines
685 B
Lua
31 lines
685 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>_: Gibt den Text aus]]
|
|
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
|