First click will cast Deterrence. If you click again while Deterrence buff is up, it will cancel the buff so you can attack again without having to wait for the buff to wear off.
#showtooltip
/cast Bestial Wrath
/script local c="Bestial Wrath";if GetSpellCooldown(c)==0 then PlaySoundFile("Sound\\Creature\\Nalorakk\\NalorakkToBear.wav")end;
Just for fun BM macro. It will play "You call on the beast? You gonna get more than you bargain for!" only when BW isn't on cooldown to prevent sound spam.
[/color]
A rare visitor to this forum now that I don't play WoW anymore, but forever a Petopian.
#showtooltip
/stopmacro [noexists]
/run for i=1,GetNumTrackingTypes() do local n, t, a, c = GetTrackingInfo(i); if string.find(n, UnitCreatureType("target")) then if t~=GetTrackingTexture(i) then SetTracking(i); end end end
/cast Hunter's Mark
/petattack
I use to above macro to cast Hunters Mark and to make my pet attack. It will also change your tracking to what ever mob you use this one (Example cast this on a undead and it will use track undead etc.) Very useful if you have points in Improved Tracking form the survival tree
That's my super-duper mouse middle button macro. Wing clip if I'm holding a melee weapon, fishing if it's a fishing pole, extract motes from clouds if I'm holding shift and MD if alt is down. Unfortunately this leaves very little room to make the MD function more convenient, but at least I don't have to switch buttons around all the time. ^^
Well.... here's a few I use on ANY hunter I make (and others I use on all characters regardless).
#showtooltip
/cast Aspect of the Hawk
/changeactionbar 1
#showtooltip
/cast Aspect of the Monkey
/changeactionbar 2
(Note: These will swap between your first and second actionbars respectively. I have monkey on bar one, and hawk on bar two. It's helpful in PvE and PvP)
#showtooltip
/cast Feed Pet
/use 0 16
(Note: This will feed your pet with the item in your MAIN [first] backpack, with the item located in the bottom right [16th slot] No more click, click or click, Ctrl + B, click, B. 0 is your backpack, and the numbers go from right to left, so 4, 3, 2, 1, 0. Slots are numbered from left to right, top to bottom. 1, 2, 3, 4, 5, 6, 7, etc, etc. So, if you wish to alter the macro, that's how to do it.)
#showtooltip
/use (shift click link stone/oil/poison available in your inv)
/use 16
Same as above, but replace 16 with 17. This applies the item to your mainhand weapon (16) and offhand weapon (17)
Retrieve all cash from mailbox (must have mailbox opened) [where m = player name]
/script CheckInbox() for m = GetInboxNumItems(), 1, -1 do TakeInboxMoney( m ) end
Retrieve all items from mailbox (Mailbox must be opened)
/script CheckInbox() for m = GetInboxNumItems(), 1, -1 do TakeInboxItem( m ) end
Sell all grey items within your bags
/script for bag = 0, 4 do for slot = 1, GetContainerNumSlots(bag) do local name = GetContainerItemLink(bag,slot) if name and string.find(name,"ff9d9d9d") then DEFAULT_CHAT_FRAME:AddMessage("Selling "..name) UseContainerItem(bag,slot) end end end
Mail all greens to an alt (Note, must have mailbox open) [note, you can use this to deposit all tradeable greens into an open trade window, bank window, vendor, or equip if nothing is open]
/run for bag=0,4 do for slot=1,GetContainerNumSlots(bag) do local texture,itemCount,locked,quality=GetContainerItemInfo(bag,slot) if quality==2 then UseContainerItem(bag,slot) end end end