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.
24 lines
290 B
Lua
Executable File
24 lines
290 B
Lua
Executable File
local PLUGIN = {}
|
|
|
|
PLUGIN.doc = [[
|
|
/echo <text>
|
|
Repeat a string.
|
|
]]
|
|
|
|
PLUGIN.triggers = {
|
|
'^/echo'
|
|
}
|
|
|
|
function PLUGIN.action(msg)
|
|
|
|
local input = get_input(msg.text)
|
|
if not input then
|
|
return send_msg(msg, PLUGIN.doc)
|
|
end
|
|
|
|
send_message(msg.chat.id, latcyr(input))
|
|
|
|
end
|
|
|
|
return PLUGIN
|