Ok, as you can see I've been here for a long time, and well the reason I havn't tried to up my rep is because well I felt as if there was nothing that i found out, that wasn't already known....until today that is...
Now i can't tell you how to use outfitter and all that, because well, it's not that hard...BUT, heres what you do..
Weapon 1 has Deathfrost on it.
Weapon 2 has Normal PVP enchant.
Code:
-- PLAYER_AURAS_CHANGED
-- Equips the outfit once deathfrost is on your target.
-- buffName = {Type = "String", Label = "Death Frost"}
local index = 1
local lowerName = strlower(setting.buffName)
while true do
local buffName = UnitBuff("target", index)
if not buffName then break end
if strlower(buffName) == lowerName then equip = true break end
index = index + 1
end
if equip == nil and didEquip then equip = false end
Replace Death Frost with the actual debuff that you recieve...
I didn't have time before i posted to actually check out what it's called.
This will allow someone like a healer, to use a macro to switch to their deathfrost weapon... then spam a rank 1 spell (moonfire) and as soon as it proc on their target it will switch back to my healing mace.
Hope this gets me outta the leecher status since I've been here so long....
I'm sure you all can think of many other ways to change these codes though.