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
Andreas Bielawski fc7e0d46f9 Launch-Bugfixes!
- Cats sendet wieder
- About: /start als Pattern
- Shell: return vergessen
2016-06-21 16:20:56 +02:00

38 lines
925 B
Lua

local about = {}
local bot = require('otouto.bot')
local utilities = require('otouto.utilities')
about.command = 'about'
about.doc = '`Sendet Informationen über den Bot.`'
about.triggers = {
'/about',
'/start'
}
function about:action(msg, config)
-- Filthy hack, but here is where we'll stop forwarded messages from hitting
-- other plugins.
-- disabled to restore old behaviour
-- if msg.forward_from then return end
local output = config.about_text .. '\nBrawlbot v2.0, basierend auf Otouto von topkecleon.'
if
(msg.new_chat_participant and msg.new_chat_participant.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')
then
utilities.send_message(self, msg.chat.id, output, true, nil, true)
return
end
return true
end
return about