View Single Post
12-26-11, 03:39 PM   #2
Vlad
A Molten Giant
 
Vlad's Avatar
AddOn Author - Click to view addons
Join Date: Dec 2005
Posts: 793
Code:
local function HasActiveTotem()
  local active = false
  for i = 1, 4 do
    active = active or GetTotemInfo(i)
  end
  return active
end
HasActiveTotem() would return true/false depending if there is minimum one totam active or not.
  Reply With Quote