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.
19 lines
267 B
Lua
Executable File
19 lines
267 B
Lua
Executable File
local PLUGIN = {}
|
|
|
|
PLUGIN.triggers = {
|
|
'^/lmgtfy'
|
|
}
|
|
|
|
function PLUGIN.action(msg)
|
|
|
|
if not msg.reply_to_message then return end
|
|
msg = msg.reply_to_message
|
|
|
|
local message = 'http://lmgtfy.com/?q=' .. URL.escape(msg.text)
|
|
|
|
send_msg(msg, message)
|
|
|
|
end
|
|
|
|
return PLUGIN
|