13 lines
203 B
Lua
13 lines
203 B
Lua
local hallo = {}
|
|
|
|
hallo.triggers = {
|
|
"^[Hh][Aa][Ll][Ll][Oo]"
|
|
}
|
|
|
|
function hallo:action(msg, config)
|
|
local name = msg.from.first_name
|
|
utilities.send_reply(msg, 'Hallo '..name..'!')
|
|
end
|
|
|
|
return hallo
|