Page 1 of 1

Hunter PvE Macros Thread

Posted: Sun May 10, 2026 7:06 pm
by Lothar
Wanted to start a thread for hunter's to share macro tips and tricks. I am using SuperMacro presently.

https://github.com/Monteo/SuperMacro

This is a simple Arcane Shot, but spammable with auto shot included if Arcane Shot is on CD.

I had to used this macro to determine spell id, where f="Arcane" to use in the following macro determining the spell number 31 (Arcane Shot Rank 4).

/run i,s,S=1,"spell",GetSpellName; f="Arcane"; n,r=S(i,"spell") repeat if strfind(n,f)~=nil then m=format("Spell %d: %s %s",i,n,r); DEFAULT_CHAT_FRAME:AddMessage(m); end i=i+1; n,r=S(i,"spell")until n==nil

/script local s, d = GetSpellCooldown(31, "spell"); if s == 0 then CastSpellByName("Arcane Shot") end

If I missed anything or can help with anything please let reply. I'm honestly posting here because I want to learn more and share what I've learned so far, which isn't much = )