21 lines
414 B
Lua
Executable File
21 lines
414 B
Lua
Executable File
NAME = "hello"
|
|
VERSION = "v0.5"
|
|
AUTHOR = "Aaron Blakely"
|
|
DESCRIPTION = "A simple hello world script for xbot"
|
|
|
|
local handlers = {}
|
|
|
|
function hi(nick, host, chan, text)
|
|
irc_privmsg(chan, "Hello, " .. nick .. "!")
|
|
end
|
|
|
|
function load()
|
|
table.insert(handlers, {PRIVMSG_CHAN, add_handler(PRIVMSG_CHAN, hi)})
|
|
end
|
|
|
|
function unload()
|
|
for i, v in ipairs(handlers) do
|
|
del_handler(v[1], v[2])
|
|
end
|
|
end
|