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/wd.lua

12 lines
250 B
Lua
Raw Normal View History

2015-04-14 20:21:23 +02:00
function run(msg, matches)
local user_name = get_name(msg)
return "" .. user_name .. " ist wieder da"
end
return {
description = "Sagt dass ihr wieder da seid",
2015-04-28 17:49:11 +02:00
usage = {"/wd"},
2015-04-20 18:52:25 +02:00
patterns = {"^/wd(.*)$"},
2015-04-14 20:21:23 +02:00
run = run
}
2015-04-20 18:52:25 +02:00
--by Akamaru