Elitist Jerks
Register
Blogs
Forums


Go Back   Elitist Jerks » Public Discussion » User Interface and AddOns

Reply
 
LinkBack Thread Tools
Old 08/21/10, 1:36 PM   #16
kemÃ
Glass Joe
 
Tauren Warrior
 
Bladefist (EU)
Originally Posted by f1reburn View Post
I'm looking for a macro that focuses my mouseover target, and if it finds none it focuses the regular target.

This type of macro is usually easy to make, for example /cast [target=mouseover,harm,exists,nodead] Ice Lance; Ice lance

When I try to apply this to focus, it doesn't work. I've tried /focus [target=mouseover] [] but that doesn't seem to work either.
I don't believe it's possible to set a focus target without actually targetting the unit that you want to focus first. The only macro command available to set one is /focus, which can't be used with a mouseover command, it's not possible to do with a /script command either as FocusUnit() and ClearFocus() are protected functions.

Offline
Reply With Quote
Old 08/21/10, 3:16 PM   #17
Ravelvan
Von Kaiser
 
Tauren Druid
 
Hyjal
Originally Posted by f1reburn View Post
I'm looking for a macro that focuses my mouseover target, and if it finds none it focuses the regular target.

This type of macro is usually easy to make, for example /cast [target=mouseover,harm,exists,nodead] Ice Lance; Ice lance

When I try to apply this to focus, it doesn't work. I've tried /focus [target=mouseover] [] but that doesn't seem to work either.
Hmm, it seems to work just fine when I try it:
/focus [target=mouseover,exists][]

Offline
Reply With Quote
Old 08/22/10, 3:45 AM   #18
f1reburn
Piston Honda
 
Troll Mage
 
Scarshield Legion (EU)
Much appreciated, it appears the 'exists' did the trick.

Offline
Reply With Quote
Old 10/14/10, 4:19 AM   #19
natas0733
Glass Joe
 
Tauren Druid
 
Dawnbringer
i would like to macro maul with mangle. before 4.0.1 i used this macro

#showtooltip
/cast mangle (bear)
/cast !maul

it no longer works for some reason. Anybody know why?

Offline
Reply With Quote
Old 10/14/10, 6:23 AM   #20
Venatia
Glass Joe
 
Undead Mage
 
Turalyon (EU)
Originally Posted by natas0733 View Post
i would like to macro maul with mangle. before 4.0.1 i used this macro

#showtooltip
/cast mangle (bear)
/cast !maul

it no longer works for some reason. Anybody know why?
By the looks of it, the spell "Mangle (Bear)" doesn't exist anymore, it seems to be just "Mangle" now.
(So remove the " (bear)" part from the macro and it should work.)

On a different note: anyone knows if it's possible to macro the flyout-stuff?
Ideally I'd get something in the lines of

/cast [mod:shift] Portal; Teleport

But this doesn't work, and neither does /use
(All very logical since you don't actually cast a spell or use an item, but then what to do?)

Last edited by Venatia : 10/14/10 at 6:26 AM. Reason: typo

Offline
Reply With Quote
Old 10/14/10, 8:58 AM   #21
Tibor
Don Flamenco
 
Tibor's Avatar
 
Goblin Warrior
 
Mal'Ganis
Can the new spell-alert button graphics be made to work with macros? For example:

#showtooltip
/cast [modifier:shift] Whirlwind; Raging Blow
I'd like to get the shiny spell-alert effect when I'm enraged and not pressing shift. Is there a hash-code (�* la #showtooltip) that enables this?

Canada Offline
Reply With Quote
Old 10/14/10, 1:27 PM   #22
Unihorn
Glass Joe
 
Blood Elf Mage
 
Черный Шрам (EU)
You can try #showtooltip Raging Blow to see it.
You can setup Power Auras or similar addon to show your enraged status. Thats if you don't mind additional addons.

Offline
Reply With Quote
Old 10/14/10, 4:27 PM   #23
Misis
Glass Joe
 
Tauren Druid
 
Sen'jin
Originally Posted by Venatia
By the looks of it, the spell "Mangle (Bear)" doesn't exist anymore, it seems to be just "Mangle" now.
(So remove the " (bear)" part from the macro and it should work.)
After playing around with the macros yesterday it appears that the new abilities are flagged Ability (Bear Form). If you don't do this it uses the "default" spell.. which for Mangle is bear. For example..

"/cast Mangle" Will cast only Mangle - Bear. "/cast Swipe" will only cast Swipe - Cat.

/cast Mangle (Cat Form) will cast Mangle - Cat.. and so on.

So, your mangle/maul macro should look like this :

#showtooltip
/cast Mangle (Bear Form)
/cast !Maul


I've noticed some oddities with this macro though. Since Maul has a cooldown now, tieing it in with all your abilities in macros is wonky. Maul will fire if it's up, even if the first spell (Mangle in this case) is not.

Offline
Reply With Quote
Old 01/04/11, 1:51 AM   #24
Mcflower
Glass Joe
 
Gnome Mage
 
Frostmourne
Mage Macros

I don't usually conform to using macros and / or user interface addons etc. etc. Yet recently I have started modifying simple addons to include little bits here and there that I can't find in other addons.

To the point, I have been sucked into the world of macros. The only macros I have made are bulky, and potentialy not as efficient as possible.

Multi-target sheep (PvP/E)
#showtooltip [mod:Shift] [target=focus,harm] [] Polymorph; Polymorph
/focus [target=focus,noexists] [target=focus,dead] 
/cast [mod:Shift] [target=focus,exists,nodead] Polymorph; Polymorph
(/stopcasting doesn't work well with this macro)

Multi-target Counterspell (PvP/E)
#showtooltip [mod:Shift] [target=focus,harm] [] Counterspell; Counterspell
/stopcasting [mod:Shift] [target=focus,exists,nodead]
/focus [target=focus,noexists] [target=focus,dead]
/cast [mod:Shift] [target=focus,exists,nodead] Counterspell; Counterspell
(253 Character Macro - Haven't properly tested / worked out the second line)

Single Button Refreshment (Save space)
#showtooltip [mod:Shift] Conjure Refreshment; Conjured Mana Cake
/cast [mod:Shift] Conjure Refreshment
/stopmacro [mod:Shift]
/use Conjured Mana Cake
Single Button Mana Gem (Save space)
#showtooltip [mod:Shift] Conjure Mana Gem; Mana Gem
/cast [mod:Shift] Conjure Mana Gem
/stopmacro [mod:Shift]
/use Mana Gem
Any improvements / suggestions are more than welcome. Feel free to steal one if you like the look, not sure if the same macros are out there. I made these myself but I'm sure someone will find something similar out there. (First post /cheer - tell me if I'm out of place)

Offline
Reply With Quote
Old 01/11/11, 5:09 PM   #25
Kindig
Glass Joe
 
Human Death Knight
 
Bleeding Hollow
Auto Targeting

I am a stickler for targeting the Tank's target when doing DPS. I generally set the Tank as my Focus and that way I can click on his target and DPS without having to worry too much about pulling threat.

I started using macros to auto target the focus' target using /assist focus, then the cast line, which helps me consistantly be on the tank's target. However, it seems that in just about every pug I've been in lately that TAB targeting is a lost skill. When the currently targeted mob in a group dies, it seems that is the cue for tanks to cast AoE spells and effects without regard for targeting anything else for several seconds at a time.

This means that I have to tab quickly and hit the regular spell (which by neccessity sits right next to the macro) until the tank wakes up and decides to target something again.

Well, I'm trying to figure out a way to remove the regular spell from my bar, so I need a way to swap the target if primary target is dead.

#showtooltip
/cast [@focustarget, harm, nodead][target=enemy] Arcane Blast

This is as close as I have gotten. I wanted to try some sort of [mod:shift] but can't get that to work. Ideally, it will look for the focus target first, and if an enemy and alive, cast the spell. If dead, or an ally, it should automatically switch to the closest enemy and cast.

If someone can help with this, that would be super. I would also take a [mod:shift] to target closest enemy solution as well.

Offline
Reply With Quote
Old 01/15/11, 11:32 AM   #26
Chanter
Glass Joe
 
Draenei Shaman
 
Trollbane (EU)
Hello, long time reader of ej, but first time poster, im looking for the help on the following macro to streamline it. When applied it changes my target , and i have to remove the target manually.

/assist [target=mouseover,help]
/cast lightning bolt


i basically want to be able to cast lightning bolt , at any mouse over target, but if it can be avoided , keep my actual target clear.

Offline
Reply With Quote
Old 01/16/11, 11:38 AM   #27
Kreepindeath
Glass Joe
 
Orc Death Knight
 
Firetree
So im finally getting to playing a warrior after of 5 years at this game and im having a little dificulty with a macro.

I need to have a macro that swaps my spec and my gear. I tried the normal:

/equipset [spec:1] Prot; fury
/usetalents [spec:1] 2; 1

But when im going from prot to fury, with the way they do DW now, I cant equip my off hand weapon until after I have swapped specs since now DW is a fury only ability. So I did some searching and saw someone had a macro that was supposed to wait until a second after the talent swap to do the equipment swap.

/usetalents [spec:1] 2; 1
/in 6 /run if GetActiveTalentGroup()==1 then EquipSet("Prot") else EquipSet("fury") end

That doesnt work either. I'm not even sure if it even attempts to change the gear because the only item that currently swaps, since im low level and there is no actual "tanking" gear yet, is my actual offhand, and it doesnt give me the YOU CANT DO THAT spam.

So my question is, is there a macro that will wait until AFTER the talent swap cast to do the actual equipment swap or am I gonna have to just do it manually?

Offline
Reply With Quote
Old 01/18/11, 11:05 AM   #28
Gere
Von Kaiser
 
Worgen Druid
 
Shandris
Originally Posted by Kreepindeath View Post
So my question is, is there a macro that will wait until AFTER the talent swap cast to do the actual equipment swap or am I gonna have to just do it manually?
What about macroing in the equip offhand into one of your main abilities and adding the ClearUI to block any errors from it. That way when you hit your main ability after a swap it will equip your OH.

Offline
Reply With Quote
Old 01/18/11, 5:20 PM   #29
moodind
Glass Joe
 
Gnome Warrior
 
Exodar
avoidance macro or addon

was wanting to find some help for a avoidance macro or addon for calculating my avoidance or seeing the hard numbers in game. could I gat a hand with that. any help would be awsome.

Offline
Reply With Quote
Old 01/26/11, 2:16 PM   #30
ceasefire
Von Kaiser
 
Gnome Warrior
 
Stormrage
I am trying to tie a [help] function to an Invite macro. Is this even possible? I have /invite added to a Victory Rush macro but when I try to Victory Rush a harmful enemy, it spams error messages which is not good.

Offline
Reply With Quote
Reply

Go Back   Elitist Jerks » Public Discussion » User Interface and AddOns

Thread Tools

Similar Threads
Thread Thread Starter Forum Replies Last Post
Looking for a Magtheridon mod/macro Biggdogg User Interface and AddOns 24 06/22/07 5:35 AM
Huhu Macro Darksaber Public Discussion 24 06/09/06 5:26 AM
Macro Fun KGBAgent185 Public Discussion 16 11/05/05 1:24 PM