Originally Posted by
ImmortalTech
I don't really know code too well, so I was wondering if there was a way to add Blood Fury to the cooldowns used when the button is pressed.
Not sure if it will work, but try adding this to the Assassination : Vendetta ability, just above the "return true" statement:
PHP Code:
-- Troll: Berserking
if IsPlayerSpell(26297) and PQR_SpellAvailable(26297) then
CastSpellByName(GetSpellInfo(26297),"player")
end
-- Orc: Blood Fury
if IsPlayerSpell(33702) and PQR_SpellAvailable(33702) then
CastSpellByName(GetSpellInfo(33702),"player")
end