Originally Posted by
Unasrage
Hi m8 nice working profile but u seem so have the same issue has my profile =(
On manual Fire Elemental Totem cast it just get replaced by Searing totem and you lose the FE cd.
mabe you can fix what i can't.. making a way of pqr seeing if u already have FE totem Up and doesnt cast any outher fire totem.
and mabe make like Alt push pause the rotacion so that ya can stop dps on spine or cast a manual spell
keep me posted on any update plz =)
after looking at the code i think you can fix that by change Searing Totem to
PHP Code:
-- check distance, check toteminfo, check combat
local _,ST = GetTotemInfo(1)
local dist = PQR_UnitDistance("player","target")
if ST == "Fire Elemental Totem" then
return false
end
if UnitExists("target") ~= nil and dist <= 20 and (dist > 8 or (not IsLeftShiftKeyDown() and not IsLeftControlKeyDown())) and ST ~= "Searing Totem" then
DestroyTotem(1)
return true
end
or
PHP Code:
-- check distance, check toteminfo, check combat
local _,ST = GetTotemInfo(1)
if UnitExists("target") ~= nil then
local dist = PQR_UnitDistance("player","target")
if dist <= 20 and (dist > 8 or (not IsLeftShiftKeyDown() and not IsLeftControlKeyDown())) and (ST ~= "Searing Totem" or ST ~= "Fire Elemental Totem") then
DestroyTotem(1)
return true
end
end