1. #1

    Bone Shield macro not working..

    Currently have this macro for my Bone Shield but it always skips over the Blood Tap cast. Any help?

    #showtooltip Bone Shield
    /cast Blood Tap
    /cast Bone Shield
    /cancelaura Blood Tap

    Blood Tap is not on CD so that's not the problem..

  2. #2

    Re: Bone Shield macro not working..

    Quote Originally Posted by tehfaze
    Currently have this macro for my Bone Shield but it always skips over the Blood Tap cast. Any help?

    #showtooltip Bone Shield
    /cast Blood Tap
    /cast Bone Shield
    /cancelaura Blood Tap

    Blood Tap is not on CD so that's not the problem..
    /cast Blood Tap
    /cast Bone Shield
    /cancelaura Blood Tap


    uhm. linked my macro i've used since i started playing my dk seriously. dunno if it still works but it seems it doesnt. havent played since 4 month so im not 100% sure

  3. #3

    Re: Bone Shield macro not working..

    Why do you have a /cancelaura there? Since both of them have a cd, cant you just remove that an mash the button twice?

    Edit: nvm, didnt notice the blood tap buff at first. I know very little about dks so dont judge me

  4. #4
    Deleted

    Re: Bone Shield macro not working..

    you need to throw in a /stopcasting in there.

    Quote Originally Posted by http://elitistjerks.com/f72/t72364-unholy_dps_3_3_5_cataclysm_naturally/
    Refreshing Bone Shield without breaking your rotation
    Code:
    #showtooltip Bone Shield
    /cast Blood Tap
    /stopcasting
    /cast Bone Shield
    it has to do with that blood tap does not use a GCD, but bone shield does. you can activate any amount of nonGCD abilities with the same macro, but you need to explicitly tell your character to stop casting the previous one.

  5. #5

    Re: Bone Shield macro not working..

    My macros never work if I start with a capital after #showtooltip

  6. #6

    Re: Bone Shield macro not working..

    edit: Still getting "This ability is not ready yet" when it obviously is...

  7. #7

    Re: Bone Shield macro not working..

    Okay how about this:

    #showtooltip
    /cast Bone Shield
    /run if(UnitBuff("player","Bone Shield") and UnitBuff("player","Blood Tap")) then CancelUnitBuff("player","Blood Tap") end

    Gershuun @ Borean Tundra US - Interface & Macros Moderator

  8. #8

    Re: Bone Shield macro not working..

    Quote Originally Posted by lawomous
    Okay how about this:

    #showtooltip
    /cast Bone Shield
    /run if(UnitBuff("player","Bone Shield") and UnitBuff("player","Blood Tap")) then CancelUnitBuff("player","Blood Tap") end
    The whole reason for the macro is to cast Bone Shield without breaking my rotation. So if Blood Tap doesn't activate in the first place...

Posting Permissions

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