Click right shift - cast heart.
PHP Code:
if IsRightShiftKeyDown() and not GetCurrentKeyBoardFocus() then
CastSpellByName(GetSpellInfo(108293), "player")
end
If heart buff up then remove feral form, and loop cast Wrath.
PHP Code:
if UnitBuffID( "player", 108293) then
if GetShapeshiftForm("player") == 3 then
CastShapeshiftForm(3)
end
CastSpellByName(GetSpellInfo(5176), "target")
end
heart buff end - cast feral form back
PHP Code:
if UnitBuffID("player", 108293) == nil and GetShapeshiftForm("player") ~= 3 then
CastShapeshiftForm(3)
end
can you help to integrate that in ur profile?:P when i do that, rotation stops/doesnt start