Mike
 Joined: 11 Oct 2004 Posts: 424 Location: Tennessee
|
Posted: Sun Oct 15, 2006 10:01 am Post subject: Some hunters macros that might help ya |
|
|
/cast Hunter's Mark(Rank 2);
/script PetAttack();
Additional Info: Places Hunter's Mark on Target and Immediately Sics Pet
/script if UnitPowerType('target')>0 then CastSpellByName("Scorpid Sting(Rank 2)"); else CastSpellByName("Viper Sting(Rank 1)"); end
Additional Info: Chooses Viper Sting or Scorpid Sting, based on whether or not the target uses Mana.
/script TargetUnitsPet("Player");
/assist
Additional Info: Simple way to target what your pet is currently fighting...good for off tanking
/script PetPassiveMode()
/cast Scatter Shot()
Additional Info: Scatter Shot without your pet getting in the way.
/script if IsControlKeyDown() then if (GetNumRaidMembers()>0) then chan="RAID" else chan="PARTY" end CastSpellByName("Arcane Shot(Rank 1)") SendChatMessage("--- Incoming: "..UnitName("target").." ---",chan) else CastSpellByName("Arcane Shot(Rank ") end
Additional Info:
I'm getting into saving button space by using macros to do more than one thing. This macro casts my highest rank Arcane Shot. However, if I'm pulling, I simply hold down CTRL when I use this macro. It will then cast my lowest rank Arcane Shot and announce the pull to the raid/party.
/script if UnitPowerType("target")==0 then CastSpellByName("Viper Sting") else CastSpellByName("Serpent Sting"); end
Additional Info:
Thanks to Gello and Cogwheel i have made a macro for hunters that will determine if your target (player or npc) uses mana or not then use the appropriate shot (Serpent Sting or Viper Sting).
All of these can be put into your macro by using control C to copy them and the use control V to paste them in the macro box. Any questions bug Hokee he knows more about this stuff than I do. _________________
 |
|