Page 1 of 2
1
2
LastLast
  1. #1
    Deleted

    Interrupt announcement addon

    I am playing a Druid and I require an addon that announces when I interrupt an enemy spellcast into party and/or raid chat.

    The ones I have tried do not recognise skullbash or bash as interrupt_spellcast or w/e it is called in lua and so do not announce them.

    I have tried the following;

    Purgeatory
    Interrupted
    Interupt

    Also, Recount doesn't recognise these Druid abilities as interrupts either!


    Any advice?

  2. #2
    The Lightbringer shadowkras's Avatar
    10+ Year Old Account
    Join Date
    Oct 2010
    Location
    Brazil
    Posts
    3,011
    Im looking for a good addon aswell, but if you allow me to correct you, recount does recognize ALL interrupt abilities, it just wont show it there if you casted your ability slower than other people, it only records successful interrupts.
    Recount only checks for the interrupt type message on battle log, it does no discrimination of spell ids.
    But the issue could be on skull bash itself, and its worth opening a ticket.

    On another note, i also want recount to record spell reflects a little better, only way i can see how well im doing with spell reflects is enabling and recording boss/trash trivial data and checking it case by case.
    Last edited by shadowkras; 2010-12-29 at 03:27 PM.
    People take stupidity to a whole new level when they sit in front of a computer.

    www.poepra2.com.br Um blog para quem prefere jogos multiplayer.

  3. #3
    RSA - Raeli's Spell Announcer
    link: http://wow.curse.com/downloads/wow-a...tails/rsa.aspx

    I use it, works for all classes and not only interupts. I really like it.
    Not sure bout skullbash and bash though.

  4. #4
    Deleted
    Quote Originally Posted by shadowkras View Post
    but if you allow me to correct you, recount does recognize ALL interrupt abilities, it just wont show it there if you casted your ability slower than other people, it only records successful interrupts.
    Recount only checks for the interrupt type message on battle log, it does no discrimination of spell ids.
    But the issue could be on skull bash itself, and its worth opening a ticket.
    .
    Let me correct you .... (facepalm)

    The spell_interupt or w/e it is called that i mentioned, isn't detailed in the combat logs when druids use skull bash or bash to interrupt a spell, therefore recount doesn't call it from logs. Do you understand that a bit better now?

    I'm guessing this is the same reason that the other interrupt printers don't recognise them either.

    ---------- Post added 2010-12-29 at 04:00 PM ----------

    Quote Originally Posted by Necket View Post
    RSA - Raeli's Spell Announcer
    link: http://wow.curse.com/downloads/wow-a...tails/rsa.aspx

    I use it, works for all classes and not only interupts. I really like it.
    Not sure bout skullbash and bash though.
    This does the trick for skullbash, but stuns from bash aren't registering as an interrupt.

    Better than nothing and handy for the other consolidated buff announcements.

    Thanks!

  5. #5
    The Lightbringer shadowkras's Avatar
    10+ Year Old Account
    Join Date
    Oct 2010
    Location
    Brazil
    Posts
    3,011
    Let me correct you .... (facepalm)
    Let me correct you, i said:
    But the issue could be on skull bash itself, and its worth opening a ticket.
    As in, open a ticket complaining and it MIGHT get fixed! Gasp!
    People take stupidity to a whole new level when they sit in front of a computer.

    www.poepra2.com.br Um blog para quem prefere jogos multiplayer.

  6. #6
    Stuns are not considered interrupts. Many creatures that are immune to stuns will not be interrupted at all by a stun. Also the addon linked above (RSA) works great and I recommend it.

    Gershuun @ Borean Tundra US - Interface & Macros Moderator

  7. #7
    The Lightbringer shadowkras's Avatar
    10+ Year Old Account
    Join Date
    Oct 2010
    Location
    Brazil
    Posts
    3,011
    @lawmorus
    Skull bash is an interrupt though, 10 seconds cooldown, 4-5 seconds spelllockout, can be used on bear and cat form.

    @Topic
    I started using RSA, and it works pretty good. Messages can be a little spammy if you are not used to them, but you can filter out things you dont really want to know (like when a CC fades, or a cooldown is over).
    People take stupidity to a whole new level when they sit in front of a computer.

    www.poepra2.com.br Um blog para quem prefere jogos multiplayer.

  8. #8
    This addon does not announce Skull Bash interrupts.

  9. #9
    Blademaster
    10+ Year Old Account
    Join Date
    May 2010
    Location
    New York
    Posts
    45
    Wakespams,thats all u need ;p

  10. #10

  11. #11
    Quote Originally Posted by Necket View Post
    RSA - Raeli's Spell Announcer
    link: http://wow.curse.com/downloads/wow-a...tails/rsa.aspx

    I use it, works for all classes and not only interupts. I really like it.
    Not sure bout skullbash and bash though.
    Thnx, great addon!

  12. #12
    Quote Originally Posted by Necket View Post
    RSA - Raeli's Spell Announcer


    I use it, works for all classes and not only interupts. I really like it.
    Not sure bout skullbash and bash though.
    This does the trick for skullbash, but stuns from bash aren't registering as an interrupt.

  13. #13
    The Lightbringer shadowkras's Avatar
    10+ Year Old Account
    Join Date
    Oct 2010
    Location
    Brazil
    Posts
    3,011
    Quote Originally Posted by mrphantuan View Post
    This does the trick for skullbash, but stuns from bash aren't registering as an interrupt.
    They are not supposed to.
    People take stupidity to a whole new level when they sit in front of a computer.

    www.poepra2.com.br Um blog para quem prefere jogos multiplayer.

  14. #14
    Field Marshal Sylvaneart's Avatar
    10+ Year Old Account
    Join Date
    Oct 2010
    Location
    Moonglade
    Posts
    91
    i macrod my skull bash for fight like Nef
    /cast skullbash
    /s Sylvaneart Interupted %t ! Your next %f

    %t is your target for those that don't know and %f is your focus. It isn't perfect but it works.

  15. #15
    Code:
    local a = CreateFrame("Frame")
    a:SetScript ("OnEvent", function(self, event, ...)
    local aEvent = select(2, ...)
    local aUser = select(4, ...)
    local spellID = select(12, ...)
    local spellName=select (10,...)
    local destName=select (7,...)
    
    	if (aEvent == "SPELL_INTERRUPT") or (aEvent=="SPELL_CAST_SUCCESS" and spellName=="Skull Bash") then
                if aUser==UnitName("player") then
                SendChatMessage(GetSpellLink(spellID).." successfully interrupted "..destName, "RAID" )
    	    end
            end
    end)
    a:RegisterEvent("COMBAT_LOG_EVENT_UNFILTERED")
    This is simple code for it. But this will report Raid chat if your interrupt is successfully applied, otherwise it will not say anything. This should be working with Skull Bash too now.
    Last edited by oraygungor; 2011-01-21 at 09:45 PM. Reason: some fixing.

  16. #16
    I tried RSA, doesn't work for Skull Bash. Anyone else got any addon for it?

  17. #17
    Deleted
    Quote Originally Posted by oraygungor View Post
    This is simple code for it. But this will report Raid chat if your interrupt is successfully applied, otherwise it will not say anything.
    a) It's UnitName.
    b) Why define arg{} if you're going to use select after it?
    c) No SPELL_INTERRUPT event fires for bash. This is a known issue.
    d) For the love of god, indent.
    d-1) Use [code] tags.

  18. #18
    I'm just new with this. trying still.. I edited the post. It should be ok now?

    thanks for reply!
    Last edited by oraygungor; 2011-01-21 at 09:44 PM.

  19. #19
    Deleted
    [code]This is a bunch of code
    with multiple lines[/code]

  20. #20
    Deleted
    I use GnomishInterrupter and I know our feral tank uses it as well for skullbashes. Not sure if it works for stuns like bash but I guesse its worth to try.

    wow.curse.com/ downloads/ wow-addons/ details/ gnomish-interrupter .aspx

    Ofcourse I cant post links so hope this is clear enough

Posting Permissions

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