wow - lua - 追踪宏

Tracking有一个特定ID,可以指定打开或关闭

/run local count=GetNumTrackingTypes();for i=1,count do local name, texture, active, category = GetTrackingInfo(i);DEFAULT_CHAT_FRAME:AddMessage(name.."("..category..")--"..i.."--"..texture);end

name 字符串名
texture ID名
active 激活
category 分类

/run if "RightButton"==GetMouseButtonClicked() then SetTracking(4,false) else SetTracking(4,true)end

RightButton 取消tracking 4
其他 关闭tracking 4