Active cooldown print (onHotkey)
#10
This will print in chat the number of any active cooldowns.
I used this for my spell caster to get all the IDs of unknown spells on custom servers such as Evolunia
I used this for my spell caster to get all the IDs of unknown spells on custom servers such as Evolunia
hotkey("F1", "Cooldown print", function()
local tStr = {}
local gStr = {}
for i = 1, 255 do
if (modules.game_cooldown.isCooldownIconActive(i)) then table.insert(tStr, i) end
if i <= 4 and (modules.game_cooldown.isGroupCooldownIconActive(i)) then table.insert(gStr, i) end
end
if table.getn(tStr) >= 1 or table.getn(gStr) >= 1 then
modules.game_textmessage.displayGameMessage('Active Cooldowns:\n'..table.concat(tStr, ', ')..
'\nGroup Cooldowns: ' .. table.concat(gStr, ', '))
else
modules.game_textmessage.displayGameMessage('No active cooldowns')
end
end)
- remove | + add
12 Jun 2022