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

13 lines
205 B
Lua
Raw Normal View History

2014-11-04 16:09:08 +01:00
function run(msg, matches)
return matches[1]
end
return {
2015-02-04 23:03:42 +01:00
description = "Simplest plugin ever!",
usage = "!echo [whatever]: echoes the msg",
2014-11-04 22:06:59 +01:00
patterns = {"^!echo (.*)$"},
2014-11-04 16:09:08 +01:00
run = run
}