View Single Post
11-14-11, 04:52 PM   #8
Lysiander
An Aku'mai Servant
Join Date: Dec 2007
Posts: 37
In case this still interests you. You can fake auras by replacing the following line in the oUF/elements/aura.lua:

Line 89: local name, rank, texture, count, dtype, duration, timeLeft, caster, isStealable, shouldConsolidate, spellID, canApplyAura, isBossDebuff = UnitAura(unit, index, filter)

with:

local name, rank, texture = GetSpellInfo(702)
local count = 3
local dtype = Poison
local duration = 60
local timeLeft = 20
local caster = nil
local isStealable = nil
local shouldConsolidate = nil
local spellID = 702
local canApplyAura = nil
local isBossDebuff = nil

Feel free to use a different spellID. Just comment the original line and uncomment it, comment the new ones when your done testing. This works mainly for positioning and stuff, but also shows timer positions and debuff type settings.
  Reply With Quote