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/plugins/echo.lua
2014-11-04 22:06:59 +01:00

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
}