1. #1

    WTB Blackfuse WeakAura Help

    I'm trying to create a weakaura that will let me know when Blackfuse is throwing a sawblade at me.

    I assume it will take two triggers:

    1) The first letting me know when Blackfuse is actually targeting me.

    2) and second, when he is casting the ability "Launch Sawblade"


    is this even possible? I've been toying around but can't come up with anything.

  2. #2
    The Patient
    15+ Year Old Account
    Join Date
    Apr 2008
    Location
    United Kingdom
    Posts
    319
    Yes it is possible, create a new icon aura and assign a manual sawblade icon to it. Head over to the trigger and use the following settings:

    Type: Custom
    Event Type: Event
    Event(s): RAID_BOSS_WHISPER
    Custom Trigger:
    Code:
    function(_, sawblade)
        if sawblade:find("readies") then
    		SendChatMessage("Launch Sawblade on "..UnitName("player"))
    		return true
    	end
    end
    Hide: Timed -> 3 seconds

    I'm pretty sure you can change the find to be more accurate if you wish to but this should do the job.
    Last edited by suprep; 2013-10-11 at 03:24 AM.

  3. #3
    Deleted
    Quote Originally Posted by suprep View Post
    Yes it is possible, create a new icon aura and assign a manual sawblade icon to it. Head over to the trigger and use the following settings:

    Type: Custom
    Event Type: Event
    Event(s): RAID_BOSS_WHISPER
    Custom Trigger:
    Code:
    function(_, sawblade)
        if sawblade:find("readies") then
    		SendChatMessage("Launch Sawblade on "..UnitName("player"))
    		return true
    	end
    end
    Hide: Timed -> 3 seconds

    I'm pretty sure you can change the find to be more accurate if you wish to but this should do the job.
    @ Hide Timed: do we type: "3" or ">3" ?? cause the "->" is abit confusing

  4. #4
    The Patient
    15+ Year Old Account
    Join Date
    Apr 2008
    Location
    United Kingdom
    Posts
    319
    Just type 3 in the field, I'm not exactly sure how long the cast and blade takes but around 2 or 3 is fine.
    Retired in WoD

  5. #5
    Deleted
    Quote Originally Posted by suprep View Post
    Yes it is possible, create a new icon aura and assign a manual sawblade icon to it. Head over to the trigger and use the following settings:

    Type: Custom
    Event Type: Event
    Event(s): RAID_BOSS_WHISPER
    Custom Trigger:
    Code:
    function(_, sawblade)
        if sawblade:find("readies") then
    		SendChatMessage("Launch Sawblade on "..UnitName("player"))
    		return true
    	end
    end
    Hide: Timed -> 3 seconds

    I'm pretty sure you can change the find to be more accurate if you wish to but this should do the job.
    Could I do an Aura which trigger with each sawblade and inside the icon show the name of the target? (Its a great idea for Raid Leaders)

  6. #6
    My guilds WA for this plays a tone + shows a timer till cast completes + /say's, and plays another tone when he finishes the cast, letting you know it is safe to move back to the pile.

    Will try and remember to add it here when I get home

  7. #7
    Deleted
    Quote Originally Posted by greywolfamakir View Post
    Could I do an Aura which trigger with each sawblade and inside the icon show the name of the target? (Its a great idea for Raid Leaders)
    BigWigs does this anyway, does DBM not do this?

Posting Permissions

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