Page 1 of 1

hunter marcos and other classes :p

Posted: Thu Feb 04, 2010 8:40 pm
by kairii
marco wise i aint a pro on them but my MD on is nice though i would love it to say my MD target >.<

#showtooltip
/cast [target=focus,exists,nodead][target=pet,exists,nodead] Misdirection

i want it to /s MD on [focus name] but idk how to :s
help me please :D


though my fav on is my druids self healing marco
#showtooltip
/cast [target=focus,exists,nodead] Healing Touch(Rank 15)
it saves lives!

Re: hunter marcos and other classes :p

Posted: Thu Feb 04, 2010 9:26 pm
by Sarayana
I used to have a complicated focus macro. At the moment, I'm just using this:

/cast [@focus] Misdirection

When I have a chance (or it starts bugging me not to have my macro MD to my pet when I'm solo) I'll edit it. For now, this works for me. :)

Re: hunter marcos and other classes :p

Posted: Fri Feb 05, 2010 11:26 am
by Tahlian
I think - think, mind - that

/s Misdirecting to %t !

Will get the announcement you want for your Misdirect macro. "%t" means "target," by the by.

It's been a while since I had a macro that did something like that, so I could be wrong, but give it a try and see if it does what you want it to.

Re: hunter marcos and other classes :p

Posted: Fri Feb 05, 2010 11:28 am
by Saturo
Aye, that or "/e misdirects %t!" will do what you intend.

Re: hunter marcos and other classes :p

Posted: Fri Feb 05, 2010 7:25 pm
by Wassa
A few macros I use.

Code: Select all

#showtooltip
/cancelaura Deterrence
/cast Deterrence
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.

Code: Select all

/assist [@focus] 
/stopmacro [@focus,exists]
/target [@pettarget,exists]
Will assist your focus (my focus is always the main tank) or assists your pet if you don't have a focus.

Code: Select all

#showtooltip
/cast [help] [@focus,help,nodead] [@pet,exists] Misdirection
Will MD your friendly target, focus, or pet in that order. I also recommend SimpleMD addon for broadcasting MDs. More acute than /s MD to %t macros.

Code: Select all

#showtooltip
/cast [@pet,dead] Revive Pet; [mod:alt] Revive Pet; [nopet] Call Pet; [@pet,exists] Dismiss Pet
Calling, dismissing, and rez pet all in one. If you pet is dead and despawned, you need to hold alt to revive.

Code: Select all

#showtooltip
/cast Aspect of the Viper
/cast Roar of Recovery
Useful if you use a cunning pet.

Code: Select all

#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]

Re: hunter marcos and other classes :p

Posted: Sat Feb 06, 2010 9:37 am
by bikazig
#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

#showtooltip Misdirection
/cast [target=focus,help][help][target=pet,exi sts,nodead] Misdirection

this one is a MD macro it will cast it on your pet but it will also cast on your tank if you have them on set focus

Re: hunter marcos and other classes :p

Posted: Sun Feb 07, 2010 8:07 pm
by Sarayana
Wassa and Bikazig, those macros are hugely helpful! Thanks a bunch.

Kairii, I totally misread your question... I guess my post was entirely unhelpful >.> Sorry about that.

Re: hunter marcos and other classes :p

Posted: Mon Feb 08, 2010 5:23 am
by Golden

Code: Select all

#showtooltip
/cast [equipped:staves, nomodifier] Wing Clip; [equipped:fishing poles, nomodifier] Fishing; [modifier:shift] Zapthrottle Mote Extractor; [modifier:alt, target=focus, help] Misdirection
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. ^^

Re: hunter marcos and other classes :p

Posted: Sun Feb 14, 2010 10:33 am
by Demon
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

Have Fun <3


Demon,

Re: hunter marcos and other classes :p

Posted: Sun Feb 14, 2010 2:58 pm
by Wolfang
All in one sting:

#showtooltip
/cast [nomodifier, harm] Serpent Sting; [mod:ctrl, harm] Viper Sting; [mod:shift, harm] Concussive Shot; [mod:alt, harm] Tranquilizing Shot
/startattack [harm]
/changeactionbar 2


I bind it to my middle mouse button and can then just pick which sting by pressing the modifier. I'd be lost without it.

W