13 lines
183 B
Lua
13 lines
183 B
Lua
|
|
function run(msg, matches)
|
|
return matches[1]
|
|
end
|
|
|
|
return {
|
|
description = "echoes the msg",
|
|
usage = "!echo [whatever]",
|
|
patterns = {"^!echo (.*)$"},
|
|
run = run
|
|
}
|
|
|