/console cameraIndirectiveVisibility 1
-To find out current zone map id type
/dump C_Map.GetBestMapForUnit("player")
-To get spell IDs from Dungeon Journal, Mouseover the spell and use this macro:
/dump GetMouseFocus():GetParent().spellID
. To get map ID of a dungeon, open dungeon in Encounter Journal and type:
/dump EJ_GetInstanceInfo() (7th return value will be the mapID)
. Crusader Strike macro
#showtooltip
/startattack
/use [@target,harm,nodead]Crusader strike
/stopmacro [harm,nodead]
/targetenemy
/use Crusader Strike
. Inspect unit
/focus mouseover
/run if UnitExists("focus") then InspectUnit("focus") end
. Put marks on players based on a debuff.
if aura_env.states[1].unit then
local inUse = { }
for unit in WA_IterateGroupMembers() do
local m = GetRaidTargetIndex(unit)
if m then
inUse[m] = true
end
end
for i = 2, 8 do
if not inUse[i] then
SetRaidTarget(aura_env.states[1].unit, i)
end
end
end