a4d7c40ad9
NEU: - Twitter-Plugin (ohne Markdown bisher) - Get- Set-Plugins - 9GAG - Adfly - Redis-Integration - Google Search - Google Images (modifiziert, mit Blacklist, bisher ohne Caching) - Einige Plugins lokalisiert Das ist momentan noch alles WIP, das meiste ist einfach bloß copy&paste vom proprietären Brawlbot v1.
34 lines
869 B
Lua
34 lines
869 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 = {
|
|
''
|
|
}
|
|
|
|
function about:action(msg, config)
|
|
|
|
-- 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 .. '\nBrawlbot v2, basierend auf Otouto v'..bot.version..' 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)
|
|
return
|
|
end
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
return about
|