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
12 lines
222 B
Lua
12 lines
222 B
Lua
local hello = {}
|
|
|
|
hello.triggers = {
|
|
"^[Ss][Aa][Gg] [Hh][Aa][Ll][Ll][Oo] [Zz][Uu] (.*)$"
|
|
}
|
|
|
|
function hello:action(msg, config, matches)
|
|
utilities.send_message(msg.chat.id, 'Hallo, '..matches[1]..'!')
|
|
end
|
|
|
|
return hello
|