1
0
mirror of https://github.com/ShadowNinja/LuaIRC.git synced 2025-06-28 14:16:07 +02:00

Add a message queue

This commit is contained in:
ShadowNinja
2013-10-23 09:37:21 -04:00
parent 2ee58834e0
commit 7adba31f8c
4 changed files with 39 additions and 12 deletions

View File

@ -75,6 +75,10 @@ function irc:topic(channel)
-- @param ... Format parameters for <code>msg</code>, with <code>string.format</code> semantics. [optional]
function irc:send(msg, ...)
--- Queue Message to be sent to the server.
-- @param msg Message to be sent.
function irc:queue(msg)
--- Send a message to a channel or user.
-- @param target Nick or channel to send to.
-- @param message Message text.