Post#4 » Wed Jul 22, 2026 3:48 pm
-- starting combat: send pet and put hunter's mark:
/cast Hunter's Mark
/script PetAttack()
-- below are arcane/mongoose serpent/raptor macros. If enemy is close use melee, otherwise ranged.
/run if CheckInteractDistance("target", 3) then CastSpellByName('Mongoose Bite') else CastSpellByName('Arcane Shot') end
/run if CheckInteractDistance("target", 3) then CastSpellByName('Raptor Strike') else CastSpellByName('Serpent Sting') end
-- below is "slow" macro. If the enemy is close casts wing clip, if far concussive shot.
/run if CheckInteractDistance("target", 3) then CastSpellByName('Wing Clip') else CastSpellByName('Concussive Shot') end