Elitist Jerks
Register
Blogs
Forums


Go Back   Elitist Jerks » Public Discussion » Public Discussion

Reply
 
LinkBack Thread Tools
Old 07/18/08, 5:03 PM   #421
teknikal
Glass Joe
 
Troll Hunter
 
Nazjatar
I was wondering if you guys cant help me with a hunter macro. Im trying to make a macro that feeds my pet conjured manna biscuits if i have them in my inventory and in the case that i dont to feed it bladespire bagels. and if i have both items in my inventory to not feed it both and just prioritize it to the conjure manna biscuit instead. any help is much appreciated thanks.

Offline
Reply With Quote
Old 07/22/08, 3:01 AM   #422
Kimmee
Glass Joe
 
Draenei Shaman
 
Aerie Peak
I've been trying to figure out how to create a macro to make target switching more efficient for me on Kil'jaeden and I am at a bit of a loss. What I want to do is make a macro that targets a Shield Orb if there is a Shield Orb within range of my Shadow Bolt (36 yards), but if there is no orb in range I want to keep my current target. This will prevent me from targeting Shield Orbs that have spawned but are across the room from me and out of casting range.

All I have been able to dig up on range modifiers in macros is something from a Rebirth script posted earlier in this thread:
/script local u="target";local un=(UnitName(u));local ir=IsSpellInRange("Rebirth",u)

I am no expert at scripts like this, and I'm not sure if it is possible to modify it for targeting purposes. What I'd like to know is if it is possible to put a "range check" in a targeting macro, and if so how would I go about doing it?

Offline
Reply With Quote
Old 07/30/08, 4:43 PM   #423
tpfca
Banned
 
Human Paladin
 
Alexstrasza
One stop-Mount

I'm trying to get this macro to work:

#showtooltip
/cast [nostance, nocombat, flyable] Swift Purple Gryphon
/cast [nostance, nocombat, noflyable] Summon Charger
/cast [nocombat, nomounted] !Crusader Aura; [mounted] !Concetration Aura
/dismount

My goal here is to have one key for my mounts. Flying in BC, Charger in Pre-BC while having Crusader aura up when I mount and Concentration aura when I dismount.

3 problems here:
a) it doesn't summon the charger pre-bc
b) triggers GDC
c) doesn't cast Conc aura as I dismount.


Any of you, bigger brains out there, can help me out achieve the intended result?

Offline
Reply With Quote
Old 07/30/08, 5:40 PM   #424
tpfca
Banned
 
Human Paladin
 
Alexstrasza
Another request (yes, I am quite new at macros.. don't know how I played without them, to be frank)

/cast Divine Favor
/cast [target=target, nodead, harm] Holy Shock
/cast [target=mouseover, noexist, help] Holy Shock
/stopcasting
/cast [target=target,exist,nodead,harm] Consecration

The goal is to cast a critical Holy shock at a friendly traget in need or an opponent in combat..

Doesn't seem to work.

Any thoughts?

Last edited by tpfca : 07/30/08 at 5:55 PM.

Offline
Reply With Quote
Old 07/31/08, 2:28 AM   #425
xarg
Piston Honda
 
Night Elf Warrior
 
Blackrock
Originally Posted by tpfca View Post
I'm trying to get this macro to work:

#showtooltip
/cast [nostance, nocombat, flyable] Swift Purple Gryphon
/cast [nostance, nocombat, noflyable] Summon Charger
/cast [nocombat, nomounted] !Crusader Aura; [mounted] !Concetration Aura
/dismount

My goal here is to have one key for my mounts. Flying in BC, Charger in Pre-BC while having Crusader aura up when I mount and Concentration aura when I dismount.

3 problems here:
a) it doesn't summon the charger pre-bc
b) triggers GDC
c) doesn't cast Conc aura as I dismount.


Any of you, bigger brains out there, can help me out achieve the intended result?
You've spelt concentration aura wrong.

You don't need the flyable / noflyable in the macro unless you're explicitly trying to stop it from printing errors on the screen.

Try:

/use Swift purple Gryphon
/cast Summon Charger
And see if that doesn't sort out your problems.

Offline
Reply With Quote
Old 07/31/08, 3:21 AM   #426
dill
Glass Joe
 
dill's Avatar
 
Амок
Undead Warlock
 
Non-US/EU Server (EU)
Originally Posted by tpfca View Post
I'm trying to get this macro to work:

#showtooltip
/cast [nostance, nocombat, flyable] Swift Purple Gryphon
/cast [nostance, nocombat, noflyable] Summon Charger
/cast [nocombat, nomounted] !Crusader Aura; [mounted] !Concetration Aura
/dismount

My goal here is to have one key for my mounts. Flying in BC, Charger in Pre-BC while having Crusader aura up when I mount and Concentration aura when I dismount.
You can use that macro with a littlie exception, that you can't use paladin summon spell for it to work due to GCD.
/cast [nocombat, nomounted] !Crusader Aura; [mounted] !Concentration Aura;
/cast [flyable, nocombat, nomounted] Swift Purple Windrider; [nocombat, nomounted] Blue Hawkstrider;
/dismount

Offline
Reply With Quote
Old 08/11/08, 11:27 PM   #427
Kwis
Glass Joe
 
Blood Elf Priest
 
Kilrogg (EU)
Power Word Shield & Mass Dispel

Hi,

I am trying to put together a macro that will first cast Power Word Shield then do a Mass Dispel.

This is to counter the knock back effect from damage ticks, while trying to Mass Dispell on Felmyst.

This is where I'm at, at the moment.
#showtooltip Mass Dispel
/stopcasting 
/castsequence Power Word: Shield(Rank 12), Mass Dispel
As it is, it will PWS, then on second press it will give me the targeting circle for the MD.
Where it fails is, it will not reset if unless I cast the dispel.
And it will also hang until PWS debuff comes off CD, unable to cast MD. Which could leaving me without the ability to dispel my group.
To counter this, I would like to use a Shift Modifier, so if I hold Shift and press the key bind, it will override the PWS and let me do a Mass Dispel. Basicly, no matter what, hold shit and I can cast Mass Dispel.

I've messed about a few times with macro & modifiers, but am having no joy getting it to work.

Anyone have a similar macro that works, or can fill in the blanks to get this one working as intended?

Thanks.

Last edited by Kwis : 08/11/08 at 11:46 PM.

Offline
Reply With Quote
Old 08/12/08, 3:49 AM   #428
Prinsesa
Bald Bull
 
Blood Elf Paladin
 
Echo Isles
Originally Posted by tpfca View Post
<snip>

The goal is to cast a critical Holy shock at a friendly traget in need or an opponent in combat..

Doesn't seem to work.

Any thoughts?
Holy Shock and Consecration both use the GCD, so you can't cast both within the same macro.

Try this instead:

/cast Divine Favor
/cast [target=target, nodead, harm] Holy Shock; [target=mouseover, noexist, help] Holy Shock
This will cast a critical Holy Shock against a living enemy if you have one targeted, or a moused-over living friendly if you do not have a living enemy targeted.

"We do want Sanctuary to be the tanking seal"

- Ghostcrawler

Offline
Reply With Quote
Old 08/12/08, 12:25 PM   #429
Gralin
Glass Joe
 
Human Mage
 
Shadowsong (EU)
Originally Posted by Kwis View Post
Hi,

I am trying to put together a macro that will first cast Power Word Shield then do a Mass Dispel.

This is to counter the knock back effect from damage ticks, while trying to Mass Dispell on Felmyst.
[...]
Try something like this:

[code]
#showtooltip Mass Dispel
/stopcasting
/castsequence reset=4 Power Word: Shield, Mass Dispel, Mass Dispel, Mass Dispel

Offline
Reply With Quote
Old 08/12/08, 12:38 PM   #430
Kwis
Glass Joe
 
Blood Elf Priest
 
Kilrogg (EU)
Thanks for the reply, I have made one I like now that seems to do exactly what I'm after.

If I Hold a modifier key down and use it I get the Dispel no matter what.

If I just press the macro once I get PWS, second press I get MD.

#showtooltip Mass Dispel
/stopcasting
/castsequence [nomodifier] Power Word: Shield(Rank 12), !Mass Dispel
/cast [modifier] !Mass Dispel

Offline
Reply With Quote
Old 08/19/08, 2:35 AM   #431
tpfca
Banned
 
Human Paladin
 
Alexstrasza
I've another one

I'm trying to get a macro done to swap weapons.

The swapping's fine, but I would like the Icon to show the equipped weapon. Is that possible?

Is this the show line?

/run local f=GetMouseFocus(); if f then DEFAULT_CHAT_FRAME:AddMessage(f:GetName()) end

Last edited by tpfca : 08/19/08 at 2:47 AM.

Offline
Reply With Quote
Old 08/19/08, 2:54 AM   #432
Marieth
Piston Honda
 
Gnome Rogue
 
Agamaggan (EU)
No, that will give you the name of the frame your mouse is currently hovering over.

Just select the question mark icon when you name your macro and choose a symbol. It will automatically show the current equipped weapon.

"...gone missing."

Offline
Reply With Quote
Old 08/19/08, 7:09 AM   #433
Shuror
Von Kaiser
 
Pandaren Priest
 
Bladefist (EU)
Originally Posted by Marieth View Post
No, that will give you the name of the frame your mouse is currently hovering over.

Just select the question mark icon when you name your macro and choose a symbol. It will automatically show the current equipped weapon.
I think that will show the weapon which the macro would switch to if pressed.

I use this, which works perfectly:

#show Attack

Offline
Reply With Quote
Old 08/19/08, 9:02 AM   #434
Marieth
Piston Honda
 
Gnome Rogue
 
Agamaggan (EU)
Originally Posted by Shuror View Post
I think that will show the weapon which the macro would switch to if pressed.

I use this, which works perfectly:

#show Attack
You are of course right. My mistake.

"...gone missing."

Offline
Reply With Quote
Old 08/19/08, 3:38 PM   #435
tpfca
Banned
 
Human Paladin
 
Alexstrasza
Originally Posted by Shuror View Post
I think that will show the weapon which the macro would switch to if pressed.

I use this, which works perfectly:

#show Attack

So? /equip [myOMGwpeaon1]; [MyOMGweapon2], #show Attack?

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