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/otouto/plugins/about.lua

20 lines
572 B
Lua
Raw Normal View History

2016-06-07 06:31:34 +02:00
local bot = require('otouto.bot')
local utilities = require('otouto.utilities')
2016-08-14 04:26:44 +02:00
local about = {}
about.command = 'about'
about.doc = 'Returns information about the bot.'
2016-08-14 04:26:44 +02:00
function about:init(config)
2016-08-14 04:46:18 +02:00
about.text = config.about_text .. '\nBased on [otouto](http://github.com/topkecleon/otouto) v'..bot.version..' by topkecleon.'
about.triggers = utilities.triggers(self.info.username, config.cmd_pat)
:t('about'):t('start').table
2016-08-14 04:26:44 +02:00
end
2015-07-11 03:50:06 +02:00
2016-05-27 02:26:30 +02:00
function about:action(msg, config)
utilities.send_message(msg.chat.id, about.text, true, nil, true)
2015-07-11 03:50:06 +02:00
end
return about