Thread: Enemy cast bar

  1. #1

    Enemy cast bar

    I'm looking for an enemy casting bar that have an option to ignore certant spells, ex; showing all normal casting spells, except for Flash of Light.

    Anybody know if there is anything like that out there?

  2. #2
    Quote Originally Posted by Neggulp View Post
    I'm looking for an enemy casting bar that have an option to ignore certant spells, ex; showing all normal casting spells, except for Flash of Light.

    Anybody know if there is anything like that out there?
    I think that's something you can configure, with Quartz, or just if you download certain unitframes, you can configure cast bars as well, and one question, why would you want to ignore FoL?

  3. #3
    Quote Originally Posted by vokey View Post
    I think that's something you can configure, with Quartz, or just if you download certain unitframes, you can configure cast bars as well, and one question, why would you want to ignore FoL?
    Just used it as an example. Want to ignore "Release Aberrations" from the Maloriak encounter.

  4. #4
    Deleted
    Code:
    local uci, uchi = UnitCastingInfo, UnitChannelInfo
    local blacklist = {
        "Release Aberrations",
    }
    function UnitCastingInfo(...)
        local r={uci(...)}
        if not tContains(blacklist,r[1]) then
            return unpack(r)
        end
    end
    function UnitChannelInfo(...)
        local r = {uchi(...)}
        if not tContains(blacklist, r[1]) then
            return unpack(r)
        end
    end
    How to use. Untested. Report back with issues.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •