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