Originally Posted by
Drinksbeer
Great profile, love the use of Invocation. Anyone know how to change Frost orb to Nether Tempest or Living Bomb?
I've been working with this trying to get Nether Tempest to work with Frost since it's considered the better DPS output. I've managed to add an Ability with the Ability editor and it seems to work fine, but I've been trying to add a recast timer at .7 seconds so it will always be on the target. That's beyond my knowledge of PQR
Code:
if IsUsableSpell(114923)
and not UnitDebuffID("target",114923,"player")
then
CastSpellByName(GetSpellInfo(114923))
return true
end
You will have to swap out Frost Bomb from the rotation or it will lock up on it. I'm not sure how to streamline it so all 3 could be in the Rotation and it only cast the one that you have talented.
I've been trying to create a Mouseover of the same thing so I can just mouseover multiple mobs in a group of trash mobs and it would spread Nether Tempest to say 6 mobs and create huge amounts of damage and damage Procs.
I also had to add an additional Ability for Mana as I seem to go oom with the Mana changes using Invocation after using Icy Veins in the minute recast time.
Code:
local power = 100 * UnitPower("player") / UnitPowerMax("player")
if (not UnitChannelInfo("player")
and power < 5
and UnitAffectingCombat("player"))
or IsLeftShiftKeyDown()
and not IsMounted()
then
CastSpellByName(GetSpellInfo(12051))
end
This just ensures that if I get to below 15k Mana, I will use Invocation instead of just stand there.