Elitist Jerks
Register
Blogs
Forums


Go Back   Elitist Jerks » Public Discussion » Public Discussion

Reply
 
LinkBack Thread Tools
Old 02/01/08, 6:23 AM   #151
Ailuridae
Glass Joe
 
Dwarf Hunter
 
Die Nachtwache (EU)
I found this macro for my hunter, but I would like to understand it, before I use it.

#showtooltip Steady Shot
/castsequence !Auto Shot, Steady Shot
/cast [target=pettarget, exists] Kill Command
/script UIErrorsFrame:Clear()


Can someone explain to me why there is

#showtooltip Steady Shot

in the macro? All it does is showing the tooltip, right? Why would I want it in a macro for max dps?

And I tried to find the "!" command, but it is not listed on wowwiki, what does it do?

Thanks for your time!

Offline
Reply With Quote
Old 02/01/08, 10:35 AM   #152
wyldbill
Piston Honda
 
wyldbill's Avatar
 
Orc Hunter
 
Area 52
Originally Posted by Ailuridae View Post
I found this macro for my hunter, but I would like to understand it, before I use it.

#showtooltip Steady Shot
/castsequence !Auto Shot, Steady Shot
/cast [target=pettarget, exists] Kill Command
/script UIErrorsFrame:Clear()


Can someone explain to me why there is

#showtooltip Steady Shot

in the macro? All it does is showing the tooltip, right? Why would I want it in a macro for max dps?

And I tried to find the "!" command, but it is not listed on wowwiki, what does it do?

Thanks for your time!

#showtooltip doesn't force the tooltip to show when the macro is pressed. Rather, it specifies what to show when the tooltip is assembled. This also affects the icon currently showing. If you remove that line, the icon should change between steady and auto, depending on which is next in the sequence. The #show token also works on the icon of the macro, there should be better descriptions of these on the wiki somewhere.

The ! token indicates that the ability following will not act as a toggle. Auto Shot, on its own, will now toggle on/off as of 2.3 or 2.3.2 and that would make this macro quite useless. It's new and it must not be showing up on the wow wiki, but it is mentioned in the patch notes or a blue post somewhere.

Offline
Reply With Quote
Old 02/01/08, 3:59 PM   #153
BOHIC
Von Kaiser
 
Tauren Druid
 
Thrall
Originally Posted by Aldor-Eitrigg View Post
Well, the whole point of the macro was to use a Focus on Solarian. Of course there are tons of variation of macros for healing on Solarian. But the question was not "how to make a macro for healing on Solarian", but on the issue of the focustarget not refreshing fast enough. Does anyone has the same type of issue? Know how to fix it?
If you've got Solarian set as your focus already, the one line macro:
/cast [target=focustarget,exists,help] fast heal
is all that you need. That macro works for me and others in my guild. Your target, your target's target, your focus, and your focus' target should all be evaluated by the macro client side I would think. If you hit that macro while you see Solarian is targeting Bob, your client should just send a spell cast to the server that says "cast a fast heal on Bob."

Offline
Reply With Quote
Old 02/02/08, 9:06 AM   #154
Uhman
Glass Joe
 
Tauren Shaman
 
Azshara (EU)
#showtooltip [swimming] Aquatic Form
#showtooltip [nocombat, outdoors, flyable] Swift Flight Form
#showtooltip Travel Form
/cast [swimming,noform]Aquatic Form; [flyable,nocombat,noform]Swift Flight Form;[outdoors,nomounted,noform]Travel Form
/cancelform
This macro should change the tooltip depending what it would use, but I have no idea why it doesnt. Could there be an addon which cause it to not show or where's the problem?

Offline
Reply With Quote
Old 02/02/08, 9:25 AM   #155
• Chicken
Mod
 
Chicken's Avatar
 
Gnome Monk
 
Azjol-Nerub (EU)
Just replace all the complicated #showtooltip stuff you have there with only "#showtooltip" and nothing else. I use that for a number of things and it always shows the correct tooltip that way.

Netherlands Online
Reply With Quote
Old 02/02/08, 1:28 PM   #156
Kaoz
Von Kaiser
 
Kaoz's Avatar
 
Gnome Mage
 
Sargeras
I used to use something like :

/use Nightmare seed
/use trinket
/use trinket
/cast last stand
/cast shield wall

And every click of that macro would activate the first available item or skill, now it just queues them all up and pops them instantly. Is there any good workaround? Something that activates the GCD seems to stop the continuation of the list, but I don't really like the idea of having the gcd activated anytime I use this macro.

Basically, I would just like a macro that would only attempt to cast the first available, and not the following.

PS: Would something like this work?

/use Nightmare seed
/cast shield block
/use trinket
/cast shield block
/use trinket
/cast shield block
/cast last stand
/cast shield block
/cast shield wall

Offline
Reply With Quote
Old 02/02/08, 2:45 PM   #157
Neostar
Glass Joe
 
Night Elf Hunter
 
Nathrezim
Macro is switching targets, why?

I am a BM hunter and just recently switched to below listed macro and have discovered that it will, for some reason automatically switch to a new target when my current target dies. My guild frowns on people breaking sheep before their time, and my new macro really wants to do this. So please help keep me guilded, if you can explain why it re-targets on its own?

/cast [target=pettarget, exists] Kill command
/castsequence reset=3 Steady shot, !Auto Shot
/console Sound_EnableSFX 0
/castrandom Rapid Fire, Bloodlust Brooch, Core of Ar'kelos
/script UIErrorsFrame:Clear()
/console Sound_EnableSFX 1

Note: I have tried the new 2:3 macro and still find that im clipping, I'm assuming it due to my weapon speed, Gladiator xbow = 3.1 and I'm trying to get the WSR which will hopefully make the 2:3 work for me.

Last edited by Neostar : 02/02/08 at 3:42 PM.

Offline
Reply With Quote
Old 02/02/08, 6:40 PM   #158
Ajuga
Piston Honda
 
Ajuga's Avatar
 
Undead Mage
 
Jaedenar (EU)
@ Neostar

Try to shoot off an Arcane Shot while not targeting anything and standing close to an enemy. You'll target the enemy on first click and fire off an AS at second click. Your macro shouldn't cause problems though - unless you click it twice after your target is dead.

You might want to do a check (do I have a target?) before the castsequence. /stopmacro [notarget, dead] or something similar.

Offline
Reply With Quote
Old 02/03/08, 7:18 PM   #159
Panzergeist
Glass Joe
 
Panzergeist's Avatar
 
Blood Elf Paladin
 
Deathwing
Originally Posted by Neostar View Post
I am a BM hunter and just recently switched to below listed macro and have discovered that it will, for some reason automatically switch to a new target when my current target dies. My guild frowns on people breaking sheep before their time, and my new macro really wants to do this. So please help keep me guilded, if you can explain why it re-targets on its own?

/cast [target=pettarget, exists] Kill command
/castsequence reset=3 Steady shot, !Auto Shot
/console Sound_EnableSFX 0
/castrandom Rapid Fire, Bloodlust Brooch, Core of Ar'kelos
/script UIErrorsFrame:Clear()
/console Sound_EnableSFX 1

Note: I have tried the new 2:3 macro and still find that im clipping, I'm assuming it due to my weapon speed, Gladiator xbow = 3.1 and I'm trying to get the WSR which will hopefully make the 2:3 work for me.
You're mashing it. Also, you don't need a castsequence at all for Steady Shot.

/cast !AutoShot
/cast Steady Shot

This will cast Steady Shot, then start auto shot once steady shot starts. Pressing it again just casts Steady Shot. So then you start to add things to it.

//cast [target=focustarget, harm] [target=pettarget, exists] [ ] !Autoshot
/cast [target=pettarget, exists] Kill Command
/cast [target=focustarget, harm] [target=pettarget, exists] [ ] Steady Shot
/petattack [target=focustarget] []

In 1 button, makes my pet attack, starts the shots on the first target available (If i have no focus, it will do it on the pet's target. If the pet has no target, it will cast it on my target), and does Kill Command. Since i can tell when I crit, I just press the button again when kill command is available. Since there is no /stopcasting, pressing it won't interrupt steady shot at all. In all I fit a steady shot rotator that pretty much puts the game into easymode.

I usually start off a regular fight with this:

/cast [harm, nocombat] [harm, modifier:shift, combat] Hunter's Mark; [harm, nomodifier, combat] Intimidation
/petattack [target=focustarget, harm] [harm]

Which will do hunter's mark and sic my pet on the target. If i'm in combat, i have to hold shift to do hunter's mark (ie, a boss fight). If i'm in combat and not holding shift, it does Intimidation. I'm gonna change that to misdirection i think as soon as i hit 70, and make it target either my focus if it's available or my pet. It will be glorious.

Offline
Reply With Quote
Old 02/04/08, 3:16 PM   #160
Qwivoth
Glass Joe
 
Night Elf Hunter
 
Madoran
I break sheep

Originally Posted by Neostar View Post
I am a BM hunter and just recently switched to below listed macro and have discovered that it will, for some reason automatically switch to a new target when my current target dies. My guild frowns on people breaking sheep before their time, and my new macro really wants to do this.
The target check command is good but I think you can address this problem without adding to your macro. Simply monitor your targets health and switch to another tank's target when your current target gets to about 3-5% health. This will keep your sustained DPS up and still allow you to button mash.

Offline
Reply With Quote
Old 02/04/08, 7:08 PM   #161
Easar
Don Flamenco
 
Easar's Avatar
 
Easar
Human Paladin
 
No WoW Account (EU)
I'm looking for a macro that casts Exorcism if the target is a demon/undead and Exorcism is not on CD, and will otherwise cast Holy Shock.
I quite often have to use Exorcism on a Warlock pet in the arena, and Holy Shock immediately after that, just pushing the same hotkey twice would be great.
I tried
#showtooltip Holy Shock
/cast [target=demon] Exorcism
/cast Holy Shock

and it seems to work. Now I want to add Undead as well for when I'm tanking, but I can't figure out how to do it, can anyone help?

Offline
Reply With Quote
Old 02/05/08, 12:58 AM   #162
Aranan
Piston Honda
 
Aranan's Avatar
 
Night Elf Druid
 
Bronzebeard
I searched for "chat" and "tab" within this thread and got 0 hits... I think I did something wrong. :P

Anyway, is there a way to macro switching between chat tabs? I want to have my "spam" tab behind the general tab with a button I can press to toggle between the two.

Offline
Reply With Quote
Old 02/05/08, 10:20 AM   #163
zork
Don Flamenco
 
zork's Avatar
 
Dwarf Warrior
 
Aegwynn (EU)
I just read this rogue-pvp-macro-guide and asking myself how some of his macros can work at the moment.

Link: Rogue Macro Guide: What I Currently Use from World of Ming | GAMERIOT

Something like this:
#show premeditation
/stopattack
/cast Premeditation
/cast Cheap Shot
Even if you hit the button twice it should not work since he would always try to execute Premeditation and fail.
But it seems to work...my question is why?

Wouldn't this mean that the following warrior macro should work too?

#show Shield Slam
/startattack
/cast Revenge
/cast Shield Slam
/cast Devastate
Well this kind of macros did work pre 2.3 but not today afaik.

Hmm OK, maybe Premeditation is not bound to the global cooldown.

| Simple is beautiful.
| Blog | Roth UI | Roth UI FAQ | GoogleCode | Zork | Guild | zorker.de

"I wonder what the non-pathetic people are doing tonight?" - Rajesh Koothrappali (The Big Bang Theory)

Offline
Reply With Quote
Old 02/05/08, 12:58 PM   #164
 Adoriele
Happy October 19th!
 
Adoriele's Avatar
 
Night Elf Druid
 
Dragonblight
Originally Posted by zork View Post
Hmm OK, maybe Premeditation is not bound to the global cooldown.
This is correct.

United States Online
Reply With Quote
Old 02/05/08, 1:46 PM   #165
royaljester
Piston Honda
 
Orc Death Knight
 
Kil'Jaeden
I've looked around but couldn't find one. I'm looking for a macro to use either healstones/charged crystal focus or pots based on the highest rank first. I'd rather not have to put them in order based on item number, as soemtimes i might add something or take something out on the fly. Is this possible?

United States Offline
Reply With Quote
Reply

Go Back   Elitist Jerks » Public Discussion » Public Discussion

Thread Tools

Similar Threads
Thread Thread Starter Forum Replies Last Post
[Warlock] 5 v 5 Macro help Cronjob Player vs. Player 13 09/08/07 6:38 AM
Need help with a macro. Iol User Interface and AddOns 5 08/10/07 3:36 PM
Macro Fun KGBAgent185 Public Discussion 16 11/05/05 1:24 PM