Automatron 0 Report post Posted February 21, 2017 I have herbalism and mining so I was trying to make macro to assign to a button and press it to switch between herb tracking and ore tracking. I searched online but i find macros that apparently work only for newest patches like this one: /castsequence [nocombat] find herbs, find minerals So any suggestions? 0 Share this post Link to post Share on other sites
Lebowski 0 Report post Posted February 21, 2017 if you have the SuperMacro addon then you can use /run if not buffed("Find Herbs") then CastSpellByName("Find Herbs") else CastSpellByName("Find Minerals") end If you don't have SuperMacro then you can use the following macro (not spam friendly) /run if n~= 1 then CastSpellByName("Find Herbs") n=1 else CastSpellByName("Find Minerals") n=0 ;end 0 Share this post Link to post Share on other sites
Automatron 0 Report post Posted February 23, 2017 On 21/02/2017 at 5:47 PM, Lebowski said: If you don't have SuperMacro then you can use the following macro (not spam friendly) /run if n~= 1 then CastSpellByName("Find Herbs") n=1 else CastSpellByName("Find Minerals") n=0 ;end This is exactly what I was looking for, thanks! Is there a guide or documentation on how to make macros for classic wow? 0 Share this post Link to post Share on other sites