Originally Posted by
merrikh
@blinded like to make a suggestion for your enhancement profile have it Totemic Recall like ony has in his resto profile. it does it when your out of combat and move away from it. then recasts when your back n combat
Edit* Not working while in combat. Back to the drawing boards. Check this post regualrly, will be editting this one with the code instead of making a new post
EDIT@* Woot, read it and weep 
Name: Totemic Recall
SpellID: 0
Delay: 0
Code:
local _, WaterTotem, _, totem1 = GetTotemInfo(3)
local _, FireTotem = GetTotemInfo(1)
local _, AirTotem = GetTotemInfo(4)
local _, EarthTotem = GetTotemInfo(2)
local inCombat = UnitAffectingCombat("Player")
if WaterTotem == "" or FireTotem == "" or AirTotem == "" or EarthTotem == "" and inCombat == nil then
return false
else
if inCombat == nil then
CastSpellByID(36936)
end
end