View Single Post
11-05-12, 04:05 PM   #2
Dridzt
A Pyroguard Emberseer
 
Dridzt's Avatar
AddOn Author - Click to view addons
Join Date: Nov 2005
Posts: 1,360
I believe you could accomplish that with the Load conditions without writing a custom trigger.

On the Load tab you'll find "Instance Type".
Checking it allows you to pick one from dropdown, clicking it again presents you with a multiple checkbox section for all instance types.
Just check the ones you want the aura to load in and leave the rest unchecked.

Custom trigger is also relatively easy.
You'd want
Custom Trigger:
Code:
function()
  return not IsInRaid() and true
end
Custom Untrigger:
Code:
function()
  return true
end
Generally speaking the dedicated WeakAuras forum is a better place for usage tips and self-help from the community.

This set of pages is also a good resource:
http://www.wowace.com/addons/weakauras/pages/

Last edited by Dridzt : 11-05-12 at 04:08 PM.
  Reply With Quote