Thread: Blind something

  1. #1

    Blind something

    Can anyone come up with a macro that will have me announce i just used blind on someone? Like would something like
    /use blind
    /say [targets name] work?
    Isnt 10% of infinite still infinite?

  2. #2
    Deleted
    /cast Blind
    /s %t Blinded
    That should be enough?
    I'm sure that there is certain addons that announce CC as well.
    Last edited by mmoc2b21e8bf19; 2011-09-26 at 12:12 PM.

  3. #3
    Deleted
    I'd personally recommend RSA. Macros always offer only imperfect solutions for this kind of thing.

  4. #4
    Quote Originally Posted by Treeston View Post
    I'd personally recommend RSA. Macros always offer only imperfect solutions for this kind of thing.
    I second that recommendation.

    RSA is the best announcing addon ever.

    The ONLY problem is that it doesn't have EVERY possible spell you could want.

    (/cries that his Shaman can't use Feral Spirit and shout "RELEASE THE HOUNDS!!!")
    Still wondering why I play this game.
    I'm a Rogue and I also made a spreadsheet for the Order Hall that is updated for BfA.

  5. #5
    Deleted
    Should be fairly easy to add that one. Otherwise:
    Code:
    local a=CreateFrame("Frame")
    a:SetScript("OnEvent",function(f,_,_,e,_,s,_,_,_,_,_,_,_,i)
        f.p = f.p or UnitGUID("player")
        if (e == "SPELL_CAST_SUCCESS") and (s == f.p) and (i == 51533) then
            SendChatMessage("RELEASE THE HOUNDS!!!","YELL")
        end
    end)
    a:RegisterEvent("COMBAT_LOG_EVENT_UNFILTERED")
    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
  •