WA发布 发表于 2023-6-12 09:27:45

raid debuffs

(Work in progress)
Shows a list of debuffs that are on (or missing) from the target.
Debuffs in the priority list always show an icon
Debuffs not in the priority list are shown either as red or green depending on if they are in the white list or not.

You have to add your wanted debuffs to the prio list and white list in the On Init code block using their spell ids.

Example prio lists:
local prio_debuffs = {
    11556,--Demoralizing Shout
    11597,--Sunder Armor
    17392,--Faerie Fire
    --11708,--Curse of Weakness
    11722,--Curse of Elements
    11717,--Curse of Recklessness
    17937,--Curse of Shadow
    23605,--Spell Vulnerability
    28595,--Winter's Chill
    11374,--Gift of Arthas
}

local whitelist_debuffs = {
    12867,--Deep Wounds
    355,--Taunt
    17800,--Improved Shadowbolt
    15258,--Shadow Weaving
}

you can enter spell id or spell name. Anything after "--" just serves as a comment for the user. Note that you have to use spell ids if you don't have the spell in your character's spellbook
页: [1]
查看完整版本: raid debuffs