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.
30 lines
437 B
Lua
Executable File
30 lines
437 B
Lua
Executable File
local PLUGIN = {}
|
|
|
|
PLUGIN.doc = [[
|
|
/hex <number>
|
|
This function converts a number to or from hexadecimal.
|
|
]]
|
|
|
|
PLUGIN.triggers = {
|
|
'^/hex '
|
|
}
|
|
|
|
function PLUGIN.action(msg)
|
|
|
|
local input = get_input(msg.text)
|
|
|
|
if string.sub(input, 1, 2) == '0x' then
|
|
send_msg(msg, tonumber(input))
|
|
|
|
elseif tonumber(input) then
|
|
send_msg(msg, string.format('%x', input))
|
|
|
|
else
|
|
send_msg(msg, config.locale.errors.argument)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
return PLUGIN
|