If you have herbalism AND mining on your character, iam sure you always wanted to automatically switch it, right?
I have got a really nice script for the blizzard macro-function which works really nice. It AUTOMATICALLY switch between herbalism to mining and back.
It happens every 2.5-3seconds, so you should normally track like normal....depends on mountspeed and lag ofc.
You really should use this with a Node-Database like Gatherer/Gathermate in addition with Routes.
Just type /macro (or ESC -> macro), press "New", pick a symbol and name and paste the following script:
Code:
/run if not THO then local f,t,c=CreateFrame("Frame","THO"),1,0 f:SetScript("OnUpdate", function(_, e) c=c+e if c>3 then c=0 SetTracking(t) if t==1 then t=2 else t=1 end end end) THO:Hide() end
/run if THO:IsVisible() then THO:Hide() else THO:Show() end
Drag it on a hotbar and press it to turn it "on" and again to turn it "off".
Use it on your own risk, because its fully automatic, maybe you can get an asskick from blizzard for it...but i dont know..its just a standard-script in wow. ^^