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

37 lines
988 B
Lua
Raw Normal View History

local about = {}
2015-07-11 03:50:06 +02:00
2016-06-07 06:31:34 +02:00
local bot = require('otouto.bot')
local utilities = require('otouto.utilities')
about.command = 'about'
about.doc = 'Returns information about the bot.'
about.triggers = {
''
2015-07-11 03:50:06 +02:00
}
2016-05-27 02:26:30 +02:00
function about:action(msg, config)
2015-07-11 03:50:06 +02:00
-- Filthy hack, but here is where we'll stop forwarded messages from hitting
-- other plugins.
if msg.forward_from then return end
local output = config.about_text .. '\nBased on [otouto](http://github.com/topkecleon/otouto) v'..bot.version..' by topkecleon.'
if
(msg.new_chat_member and msg.new_chat_member.id == self.info.id)
or msg.text_lower:match('^'..config.cmd_pat..'about$')
or msg.text_lower:match('^'..config.cmd_pat..'about@'..self.info.username:lower()..'$')
or msg.text_lower:match('^'..config.cmd_pat..'start$')
or msg.text_lower:match('^'..config.cmd_pat..'start@'..self.info.username:lower()..'$')
then
utilities.send_message(self, msg.chat.id, output, true, nil, true)
return
end
2015-07-11 03:50:06 +02:00
return true
2015-07-11 03:50:06 +02:00
end
return about