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
topkecleon 9a7f166fd4 removed spaghetti code
updated version number
2015-09-24 19:44:43 -04:00

32 lines
578 B
Lua
Executable File

local PLUGIN = {}
PLUGIN.doc = [[
/about
Information about the bot.
]]
PLUGIN.triggers = {
'^/about',
'^/info'
}
function PLUGIN.action(msg)
local message = [[
I am ]] .. bot.first_name .. [[: a plugin-wielding, multi-purpose Telegram bot.
Send /help for a list of commands.
Based on otouto v]] .. VERSION .. [[ by @topkecleon.
otouto v2 is licensed under the GPLv2.
topkecleon.github.io/otouto
Join the update/news channel!
telegram.me/otouto
]] -- Please do not remove this message. ^.^
send_message(msg.chat.id, message, true)
end
return PLUGIN