summaryrefslogtreecommitdiff
path: root/luamods/hello.lua
blob: 5facbf56c4f666d3f1ed47c6229f5ac45a4567c8 (plain)
1
2
3
4
5
6
7
8
9
10
return {
    name = "hello",
    delay_sec = 5,
    options = {},
    subcommands = {},
    minimal_rights = "user",
    handle = function(request)
        return "hello, " .. request.sender.alias_name .. "!"
    end
}