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

31 lines
584 B
Lua
Raw Normal View History

local doc = [[
2015-07-11 03:50:06 +02:00
/about
Get info 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
local message = config.about_text .. '\nBased on otouto v'..version..' by topkecleon.\notouto v3 is licensed under the GPLv2.\ntopkecleon.github.io/otouto'
if msg.new_chat_participant and msg.new_chat_participant.id == bot.id then
sendMessage(msg.chat.id, message)
return
elseif string.match(msg.text_lower, '^/about[@'..bot.username..']*') then
sendReply(msg, message)
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
}