18 lines
304 B
Lua
18 lines
304 B
Lua
local function run(msg, matches)
|
|
local text = matches[1]
|
|
local b = 1
|
|
|
|
while b ~= 0 do
|
|
text,b = text:gsub('^/+','')
|
|
text = text:trim()
|
|
end
|
|
return text
|
|
end
|
|
|
|
return {
|
|
description = "Wiederholt euch",
|
|
usage = {"#echo [Satz]"},
|
|
patterns = {"^#[Ee][Cc][Hh][Oo] (.*)$"},
|
|
run = run
|
|
}
|