Files
wow-weakauras/Complete Projects/Legion/Warlock Artifact.lua
2024-08-24 22:43:07 +02:00

17 lines
401 B
Lua

DISPLAY
function()
local souls = select(4, UnitBuff("player", "Tormented Souls")) or 0
return souls
end
TRIGGER
function()
local buff = UnitBuff("player", "Tormented Souls") or 0
if buff ~= nil then return true else return false end
end
DURATION_TRIGGER
function()
local souls = select(4, UnitBuff("player", "Tormented Souls")) or 0
return souls, 12, true
end