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/plugins/echo.lua
2016-04-15 06:57:42 -07:00

36 lines
687 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"' .. input .. '"'
else
output = utilities.latcyr(input)
end
bindings.sendMessage(self, msg.chat.id, output, true)
end
end
return echo