This repository has been archived on 2021-04-24. You can view files and clone it, but cannot push or open issues or pull requests.
Mikubot-2/plugin.lua

21 lines
227 B
Lua
Raw Normal View History

2015-07-03 00:15:52 +02:00
local PLUGIN = {}
PLUGIN.doc = [[
!example
Info about the command.
]]
PLUGIN.triggers = {
'^!example',
'^!e$'
}
function PLUGIN.action(msg)
local message = 'Example output.'
send_msg(msg, message)
end
return PLUGIN