Forum Settings
       
Reply To Thread

Macro GuideFollow

#127 Jun 29 2007 at 7:01 AM Rating: Good
Quote:
There's a macro I'd like to use, but I don't know how to write it and if it is possible.

I have different trinkets in my first trinket slot depending on the situation (Insignia of the Alliance in PvP, a +heal trinket in instances) and I'd like a macro that uses whichever trinket is in that slot at any given time.

So, first, is a "/use <slot #>" or something like that possible?
And second, which number has that specific slot and how do I know the number?


Just /use 13 or /use 14 (13 is the top trinket slot, 14 is the bottom). There's a list somewhere but hell if I know where offhand.

Quote:
I just can't manage to get my macro to work.
I'm trying to get one to switch from battle stance to berzerker stance and then cast pummel.
I've read the whole guide and still can't get it.
This is what I've been doing:
/cast [stance: 3] Berzerker Stance; Pummel


1) Berserker. Not Berzerker.
2) That macro is set up to, if you are in Berserker Stance, cast Berserker Stance. If you are not in Berserker Stance, cast Pummel. Try;

/cast [stance:3] Pummel; Berserker Stance

That should cast Pummel if you're in Berserker, and if not cast Berserker Stance.
#128 Jun 29 2007 at 10:27 AM Rating: Decent
*
58 posts
Boy am i embarassed to say that it was because I was mis-spelling Berserker.
I actually noticed it before I read your reply...but thanks very much for pointing it out.
I have it working like this.
/cast [stance: 1/2] Berserker Stance
/stopcasting
/cast Pummel

seems to be working fine. thanks for your help
#129 Jul 14 2007 at 3:53 PM Rating: Decent
ok.. my head is too thick for all this..
Can I make a macro that makes my use "Beastial Wrath" and the trinket "Devilsaur Tooth" at the same time or 1 sec between them? And how do I do it?
#130 Jul 15 2007 at 9:35 AM Rating: Good
/cast Bestial Wrath
/stopcasting
/use Devilsaur Tooth
#131 Jul 16 2007 at 8:05 AM Rating: Decent
***
3,761 posts
Hey, thanks for the guide. I'm going to be working on a few warlock macros, so I may need more help :)


First one - I want 1 touch Devour Magic, off anyone in my party. I'm thinking of using F1-F5 for this, so a simple 'F4' unsheeps party member 4.

I also want the ability to devour magic their pets, using the modifier:shift. So this is what I came up with. Note, I would make these macros, assign hotkeys, and hide the spells somewhere off my interface. On the default UI, you could put them on hotbar 5 for example. With bongos2, you can just hide bars and assign hotkeys to them.


F1
#showtooltip Devour Magic
/cast [modifier:shift,target=pet1] Devour Magic; [nomodifier,target=self] Devour Magic;

F2
#showtooltip Devour Magic
/cast [modifier:shift,target=pet2] Devour Magic; [nomodifier,target=party2] Devour Magic;

F3
#showtooltip Devour Magic
/cast [modifier:shift,target=pet3] Devour Magic; [nomodifier,target=party3] Devour Magic;

F4
#showtooltip Devour Magic
/cast [modifier:shift,target=pet4] Devour Magic; [nomodifier,target=party4] Devour Magic;


I'm not sure if I have the right syntax there. From reading on the oboards, I found you can target party members with that notation (party1, party2, party3), I just made a guess about the pet1, pet2, pet3. Anything you would add to those? I was thinking [modifier:shift,target=pet1,exists].

edit: Pet part isn't working. I'm not even positive group part is working, but at least devouring off myself works :)

Could use some help.

Edited, Jul 16th 2007 12:14pm by mikelolol
#132 Jul 16 2007 at 8:19 AM Rating: Decent
***
3,761 posts
I could use some help on another macro--

I want to spam Unending Breath and Detect Invisibility on my group for PVP. This would add 2 extra layers of magic buffs for enemies to debuff. I'm looking for a way to just spam 1 button and buff everybody (if thats even possible without targetting them).

Not only for arena, this would be nice for BG's too.
#133 Jul 16 2007 at 10:48 AM Rating: Good
Quote:

First one - I want 1 touch Devour Magic, off anyone in my party. I'm thinking of using F1-F5 for this, so a simple 'F4' unsheeps party member 4.

I also want the ability to devour magic their pets, using the modifier:shift. So this is what I came up with. Note, I would make these macros, assign hotkeys, and hide the spells somewhere off my interface. On the default UI, you could put them on hotbar 5 for example. With bongos2, you can just hide bars and assign hotkeys to them.


F1
#showtooltip Devour Magic
/cast [modifier:shift,target=pet1] Devour Magic; [nomodifier,target=self] Devour Magic;

F2
#showtooltip Devour Magic
/cast [modifier:shift,target=pet2] Devour Magic; [nomodifier,target=party2] Devour Magic;

F3
#showtooltip Devour Magic
/cast [modifier:shift,target=pet3] Devour Magic; [nomodifier,target=party3] Devour Magic;

F4
#showtooltip Devour Magic
/cast [modifier:shift,target=pet4] Devour Magic; [nomodifier,target=party4] Devour Magic;


I'm not sure if I have the right syntax there. From reading on the oboards, I found you can target party members with that notation (party1, party2, party3), I just made a guess about the pet1, pet2, pet3. Anything you would add to those? I was thinking [modifier:shift,target=pet1,exists].

edit: Pet part isn't working. I'm not even positive group part is working, but at least devouring off myself works :)


The valid unitID for yourself is player, and your pet is... pet. The unitID for a party member is party1, party2, party3 etc, and the unitID for a pet is partypet1, partypet2, partypet3, etc

In a group, there is you, and then party1-4 and partypet1-4. It doesn't count yourself in the numbering system. Therefore...

F1
#showtooltip Devour Magic
/cast [modifier:shift,target=pet,exists,nodead] Devour Magic; [target=player] Devour Magic

F2
#showtooltip Devour Magic
/cast [modifier:shift,target=partypet1,exists,nodead] Devour Magic; [target=party1,exists,nodead] Devour Magic

F3
#showtooltip Devour Magic
/cast [modifier:shift,target=partypet2,exists,nodead] Devour Magic; [target=party2,exists,nodead] Devour Magic

F4
#showtooltip Devour Magic
/cast [modifier:shift,target=partypet3,exists,nodead] Devour Magic; [target=party3,exists,nodead] Devour Magic

F5
#showtooltip Devour Magic
/cast [modifier:shift,target=partypet4,exists,nodead] Devour Magic; [target=party4,exists,nodead] Devour Magic

Lemme know if it doesn't work.

Quote:


I want to spam Unending Breath and Detect Invisibility on my group for PVP. This would add 2 extra layers of magic buffs for enemies to debuff. I'm looking for a way to just spam 1 button and buff everybody (if thats even possible without targetting them).


For this kind of thing, you really want a mod. Check out Grid or... SimpleBuff, I believe.
#134 Jul 16 2007 at 12:13 PM Rating: Decent
***
3,761 posts
Cheers, thank you.

I'm home now and totally redoing my UI. Trying to hotkey everything I use, memorize it and hide it. I'm getting close, I should be able to test these macros in about an hour.

The section on focus I found really helpful. I finally installed a unit frames addon, just to see my focus targets. I'm mainly focused on PVP now, so the macros will be more PVP oriented.

An example is clearing a flag room. If I see a healer, I want to immediately target and /focus them. Then I'll see their castbar and debuffs on the focus unit frame, so I can get that clutch spell lock, keep curse of tongues on them forever, drain their mana, all without switching from my target.

So the macros I'm working on are all based around focus. Curse of tongues on focus target, spell lock, deathcoil, fear, seduce. They're all basically the same macro, just different ability names, ie:

#showtooltip Curse of Tongues
/cast [modifier:shift,target=focus,harm] Curse of Tongues; [nomodifier,harm] Curse of Tongues;

Same thing for fear

#showtooltip Fear
/cast [modifier:shift,target=focus,harm] Fear; [nomodifier,harm] Fear;

Or drain mana

#showtooltip Drain Mana
/cast [nochanelling,modifier:shift,target=focus,harm] Drain Mana; [nochannelling,nomodifier,harm] Drain Mana;



I'm just not sure if the syntax is correct. I had an old drain life, mana and soul macro from wowwiki, which used that nochannelling option. It basically says don't recast unless channelling breaks (by interuption, spell completion), so you dont spam it early and waste mana.

I'm also not sure if I need that harm option in there, but I guess it never hurts to be over-specific right?


I guess those macros could easily apply to other classes too.

#showtooltip Counter-Spell
/cast [modifier:shift,target=focus,harm] Counter-Spell; [nomodifier,harm] Counter-Spell;

In theory you'd be watching your focus targets cast bar (like a healer), while dps'ing someone else (your main target, like a warrior). When you see a heal coming, shift-click (or shift-hotkey) to counter-spell the healer, without switching off the warrior.

You could also substitute polymorph for counter-spell, assuming my syntax is correct.

Edited, Jul 16th 2007 4:15pm by mikelolol
#135 Jul 16 2007 at 2:25 PM Rating: Decent
Thank You! It's working wonderfull!
But when i tried a Intimidaton - Mend Pet macro.. it didn't work :S

/cast Intimidation
/stopcasting
/cast Mend Pet

Did i do something wrong? :S
#136 Jul 17 2007 at 11:14 PM Rating: Good
Does Intimidation use the global cooldown? I'm pretty sure it does... try /castsequence Intimidation, Mend Pet

You'll have to double-tap it, but it should work.
#137 Jul 18 2007 at 7:05 AM Rating: Default
Ahhhh.. now i get it xP Thank you!
#138 Jul 18 2007 at 7:28 AM Rating: Default
I just briefly skimmed through it, but nice guide, and I'm sure it'll help me when I start or when I'm mid-level
#142 Jul 25 2007 at 10:00 AM Rating: Decent
Thanks for posting the guide..really opened my eyes thnx
#143 Jul 26 2007 at 5:21 AM Rating: Decent
I read the article...but I don't understand one thing...Can I write a macro to cast Power Word: Shield on myself without having to have myself targeted? And if I can, how yould it be written?
#144 Jul 26 2007 at 7:54 AM Rating: Good
/cast [target=player] Power Word: Shield
#145 Jul 28 2007 at 5:08 AM Rating: Decent
edit: asked this question in another thread



Edited, Jul 30th 2007 10:57am by LadyKatherina
#146 Aug 19 2007 at 9:13 PM Rating: Decent
I don't know if this has been asked before pbut how would I make a macro to remove my armor all at once?
#147 Aug 19 2007 at 10:47 PM Rating: Decent
Is there any macro out there that allows autocasting?

By this I mean, is there something similar to autoattacking, but for spells, which allows you to cast one spell over and over again against a designated target?

#148 Aug 20 2007 at 9:56 AM Rating: Decent
28 posts
Quote:
Hey, thanks for the guide. I'm going to be working on a few warlock macros, so I may need more help :)


First one - I want 1 touch Devour Magic, off anyone in my party. I'm thinking of using F1-F5 for this, so a simple 'F4' unsheeps party member 4.

I also want the ability to devour magic their pets, using the modifier:shift. So this is what I came up with. Note, I would make these macros, assign hotkeys, and hide the spells somewhere off my interface. On the default UI, you could put them on hotbar 5 for example. With bongos2, you can just hide bars and assign hotkeys to them.


F1
#showtooltip Devour Magic
/cast [modifier:shift,target=pet1] Devour Magic; [nomodifier,target=self] Devour Magic;

F2
#showtooltip Devour Magic
/cast [modifier:shift,target=pet2] Devour Magic; [nomodifier,target=party2] Devour Magic;

F3
#showtooltip Devour Magic
/cast [modifier:shift,target=pet3] Devour Magic; [nomodifier,target=party3] Devour Magic;

F4
#showtooltip Devour Magic
/cast [modifier:shift,target=pet4] Devour Magic; [nomodifier,target=party4] Devour Magic;


I'm not sure if I have the right syntax there. From reading on the oboards, I found you can target party members with that notation (party1, party2, party3), I just made a guess about the pet1, pet2, pet3. Anything you would add to those? I was thinking [modifier:shift,target=pet1,exists].

edit: Pet part isn't working. I'm not even positive group part is working, but at least devouring off myself works :)

Could use some help.


You might want to look into Decursive (addon). Basically it has 1-40 little squares (1 solo, 5 if in a group, 40 if in a big raid...or 2 if yer group has two people, 34 if the raid has 34, etc) that turn colors based on what is afflicting the party/raid member. Oh, it also has the option to show squares for pets. For me, a priest, I left click to dispell magic (square is blue), right click to abolish disease (square is red). All of this while keeping my current target. And it automatically picks the right rank so you don't waste mana. You can also middle click a square to target that player, but with my scroll up and down being mapped that never works right for me :)

Jeff
#149 Aug 21 2007 at 1:03 AM Rating: Excellent
**
784 posts
Great guide.

Sorry if this has been covered and I've just missed it.

I'm pretty much a complete noob when it comes to macros in WoW. I do use a few, and need clarification on this:

Quote:
d) Stop Macro

/stopmacro [conditionals]

As you may suspect, this command stops the macro if the conditionals are met (or if no conditionals are specified, every time – although that has very little purpose). Very handy to use in macros where you will want to issue a line of chat text (i.e. “Power World shield on %t”) if the spell actually goes off, but to avoid spamming your party if it won’t cast.


I have some macros on my paladin for casting blessing of protection and lay on hands. Both of them have /rw and %t to notify the raid that the spell has been cast.

What is the [conditionals] to put after /stopmacro to prevent the /rw from going off if the spell is not cast?

Edited, Aug 21st 2007 2:04:06am by Fetter
#150 Aug 21 2007 at 9:23 AM Rating: Decent
wow good job, this is the most complete macro info thread i have ever come accross. Koodoos.
#151 Aug 22 2007 at 8:36 AM Rating: Decent
**
640 posts
I've tried unsuccessfully to use your "Get There Deluxe" warrior Macro. My brain cells mutiny when I try to break it down to find what's missing/wrong. Possibly it's only my misunderstanding of the macro's function.

I understood it to be two macros.

The first appears to at least partially work. When I'm out of combat and in battle stance, it will charge, proc BR when holding shift, and will switch me to berserker stance with a double tap. The second one also appears to partially work. When I'm in combat, in berserker stance, it will intercept. However, when I'm in berserker stance, out of combat, neither macro will do anything. It won't switch me to battle for a charge, nor will it simply intercept.

Am I expecting more out of it than what it's capable of? Is there possibly an error in the layout you posted?

Also, you might want to include add another macro to your Rogue list. It's a simple Pick Pocket macro that allows you to attempt to PP every enemy you engage from stealth.

/cast Pick Pocket
/stopcasting
/cast Cheap Shot

You must have auto loot enabled in the interface for it to work, and of course you have to be in stealth. If you like to open with something other than Cheap Shot, just replace that with whichever move you open with (Ambush, Backstab for low lvl toons, Garrote, etc). I just replaced my cheap shot key with this macro. If the mob doesn't have pockets or is invalid, you'll get a message stating as much, but the opening attack will still happen.
Reply To Thread

Colors Smileys Quote OriginalQuote Checked Help

 

Recent Visitors: 14 All times are in CST
Anonymous Guests (14)