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