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

37 lines
805 B
Lua
Raw Normal View History

local command = 'about'
local doc = '`Returns information about the bot.`'
2015-07-11 03:50:06 +02:00
local triggers = {
''
2015-07-11 03:50:06 +02:00
}
local action = function(msg)
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 message = config.about_text .. '\nBased on @otouto v'..version..' by topkecleon.'
if msg.new_chat_participant and msg.new_chat_participant.id == bot.id then
sendMessage(msg.chat.id, message, true)
return
elseif msg.text_lower:match('^/about[@'..bot.username..']*') then
sendMessage(msg.chat.id, message, true)
return
elseif msg.text_lower:match('^/start') then
sendMessage(msg.chat.id, message, true)
return
end
2015-07-11 03:50:06 +02:00
return true
2015-07-11 03:50:06 +02:00
end
return {
action = action,
triggers = triggers,
doc = doc,
command = command
}