8bc1b541c4
- Stats: Zähle alle Nachrichten zusammen und verwnede comma_value()
12 lines
228 B
Lua
12 lines
228 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(self, msg.chat.id, 'Hallo, '..matches[1]..'!')
|
|
end
|
|
|
|
return hello
|