495cc8d0c1
echo.lua now enquotes echos in supergroups.
36 lines
564 B
Lua
Executable File
36 lines
564 B
Lua
Executable File
local command = 'echo <text>'
|
|
local doc = [[```
|
|
/echo <text>
|
|
Repeats a string of text.
|
|
```]]
|
|
|
|
local triggers = {
|
|
'^/echo[@'..bot.username..']*'
|
|
}
|
|
|
|
local action = function(msg)
|
|
|
|
local input = msg.text:input()
|
|
|
|
if not input then
|
|
sendMessage(msg.chat.id, doc, true, msg.message_id, true)
|
|
else
|
|
local output
|
|
if msg.chat.type == 'supergroup' then
|
|
output = 'Echo:\n"' .. input .. '"'
|
|
else
|
|
output = latcyr(input)
|
|
end
|
|
sendMessage(msg.chat.id, output, true)
|
|
end
|
|
|
|
|
|
end
|
|
|
|
return {
|
|
action = action,
|
|
triggers = triggers,
|
|
doc = doc,
|
|
command = command
|
|
}
|