8 lines
308 B
Lua
8 lines
308 B
Lua
-- TICKER_200
|
|
function()
|
|
local whisper = aura_env.whisperQueue[1]
|
|
if whisper == nil then return end
|
|
SendChatMessage(whisper.msg, "WHISPER", nil, whisper.to)
|
|
print(string.format("Whispering %s, %d remaining in queue", whisper.to, #aura_env.whisperQueue))
|
|
table.remove(aura_env.whisperQueue, 1)
|
|
end |