13 lines
209 B
Lua
13 lines
209 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(self, msg, 'Hallo '..name..'!')
|
||
|
end
|
||
|
|
||
|
return hallo
|