64621a640e
utilities change should make them work.
36 lines
745 B
Lua
Executable File
36 lines
745 B
Lua
Executable File
local echo = {}
|
|
|
|
local bindings = require('bindings')
|
|
local utilities = require('utilities')
|
|
|
|
echo.command = 'echo <text>'
|
|
echo.doc = [[```
|
|
/echo <text>
|
|
Repeats a string of text.
|
|
```]]
|
|
|
|
function echo:init()
|
|
echo.triggers = utilities.triggers(self.info.username):t('echo', true).table
|
|
end
|
|
|
|
function echo:action(msg)
|
|
|
|
local input = utilities.input(msg.text)
|
|
|
|
if not input then
|
|
bindings.sendMessage(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) .. '"'
|
|
else
|
|
output = utilities.md_escape(utilities.char.zwnj..input)
|
|
end
|
|
bindings.sendMessage(self, msg.chat.id, output, true, nil, true)
|
|
end
|
|
|
|
|
|
end
|
|
|
|
return echo
|