12 lines
270 B
Lua
12 lines
270 B
Lua
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",
|
|
usage = {"/wd"},
|
|
patterns = {"^/[w|W][d|D]$"},
|
|
run = run
|
|
}
|
|
--by Akamaru [https://ponywave.de] |