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.
23 lines
334 B
Lua
Executable File
23 lines
334 B
Lua
Executable File
local PLUGIN = {}
|
|
|
|
PLUGIN.doc = [[
|
|
/fortune
|
|
Get a random fortune from the UNIX fortune program.
|
|
]]
|
|
|
|
PLUGIN.triggers = {
|
|
'^/fortune',
|
|
'^/f$'
|
|
}
|
|
|
|
function PLUGIN.action(msg)
|
|
local output = io.popen('fortune')
|
|
message = ''
|
|
for l in output:lines() do
|
|
message = message .. l .. '\n'
|
|
end
|
|
send_msg(msg, message)
|
|
end
|
|
|
|
return PLUGIN
|