fb9d3652f3
- self muss nicht mehr überall übergeben werden - alle Plugins wurden angepasst Eigene Updates: - abort_inline_query() hinzugefügt - Mehr Plugins zum Standard-Set hinzugefügt - Eventuell noch etwas, was ich vergessen hab
19 lines
376 B
Lua
19 lines
376 B
Lua
local surrogate = {}
|
|
|
|
surrogate.triggers = {
|
|
"^/s (%-%d+) +(.+)$",
|
|
"^/s (%d+) +(.+)$",
|
|
"^/s (@[A-Za-z0-9-_-.-._.]+) +(.+)"
|
|
}
|
|
|
|
function surrogate:action(msg, config, matches)
|
|
if not is_sudo(msg, config) then
|
|
utilities.send_reply(msg, config.errors.sudo)
|
|
return
|
|
end
|
|
utilities.send_message(matches[1], matches[2], true, nil, true)
|
|
return
|
|
end
|
|
|
|
return surrogate
|