60570e90f3
added example plugin with documentation added liberbot-compliant flood control see Liberbot Support for details on getting compliant added Kickass Torrent plugin various bugfixes all files seem to have been marked changed due to a shift in platform I will do a clean clone and testing to ensure there is no issue.
29 lines
519 B
Lua
Executable File
29 lines
519 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.
|
|
Use /help for a list of commands.
|
|
|
|
Based on otouto v]] .. VERSION .. [[ by @topkecleon.
|
|
otouto v2 is licensed under the GPLv2.
|
|
topkecleon.github.io/otouto
|
|
]] -- Please do not remove this message.
|
|
|
|
send_message(msg.chat.id, message, true)
|
|
|
|
end
|
|
|
|
return PLUGIN
|