21 lines
227 B
Lua
21 lines
227 B
Lua
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
|