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

36 lines
681 B
Lua
Raw Normal View History

local echo = {}
local bindings = require('bindings')
local utilities = require('utilities')
echo.command = 'echo <text>'
echo.doc = [[```
/echo <text>
Repeats a string of text.
```]]
2015-07-03 00:15:52 +02:00
function echo:init()
echo.triggers = utilities.triggers(self.info.username):t('echo').table
end
2015-07-03 00:15:52 +02:00
function echo:action(msg)
2015-07-03 00:15:52 +02:00
local input = utilities.input(msg.text)
2015-07-03 00:15:52 +02:00
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
2015-07-03 00:15:52 +02:00
2015-07-03 00:15:52 +02:00
end
return echo