View Single Post
01-26-15, 07:49 AM   #8
p3lim
A Pyroguard Emberseer
 
p3lim's Avatar
AddOn Author - Click to view addons
Join Date: Feb 2007
Posts: 1,710
Lua Code:
  1. for index = 1, GetNumTrackingTypes() do
  2.     if(GetTrackingInfo(index) == "Track Humanoids") then
  3.         return SetTracking(index, false)
  4.     end
  5. end

Something like this would work, unless it's an actual spell.

Keep in mind you have to use this with an event that is suitable for this task.
  Reply With Quote