Macros - Useful macros in here

Started by Gandalf, March 24, 2009, 10:01:09 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

Azunai

Christ Jas, you really do everything with just 1 button don't you :P
or Garrit, or Torgen. Also, Livestream.

Deminion

Been working on a macro for semi. Where she wants to use http://www.wowhead.com/spell=88684 and if on cd http://www.wowhead.com/spell=2050
So far i've tried a few combo's, and currently stuck on this.
#showtooltip Holy Word: Serenity
/cast reset=10 [help, @hbtarget, nodead][help, @target, nodead] Holy Word: Serenity
/cast [help, @hbtarget, nodead][help, @target, nodead] Heal

But not too sure if it will work. Any input?

JonnyAppleSeed

#showtooltip Holy Word: Serenity
/castsequence reset=10 [@hbtarget] Holy Word: Serenity, Heal, Heal, Heal, Heal, Heal, heal,




It should reset every 10 secs ... ill have a look later at how i linked my druid swiftmend and wild growth when i get back  .... same function as your looking for
It is by caffeine alone I set my mind in motion. It is by the beans of Java that thoughts acquire speed, the hands acquire shakes, the shakes become a warning. It is by caffeine alone I set my mind in motion


Deminion

#48
Tried castsequence, but with only Heal put in there once, and it didn't function :sad:

Quote6. Cast X when Y is on cooldown.
Can't do it. Macros can't check for Cooldown on any spells.
found on wowhead.

Ammon

castsequences reset based on when the macro was last triggered, rather than when first pushed..

Ammon

After hearing TL in raid dpsing with his healing gear :)
I figured i'd post a simple macro i use for respec.

/equipset [spec:1] Secondary; [spec:2] Primary
/usetalents [spec:1] 2; 1

TeaLeaf

Quote from: Ammon;367597After hearing TL in raid dpsing with his healing gear :)
I figured i'd post a simple macro i use for respec.
I still managed 80k dps though so it wasn't too awful!  
Must have been something to do with the 24.8% hit rating my healing gear gave me :blush: :doh:
TL.
Wisdom doesn\'t necessarily come with age. Sometimes age just shows up all by itself.  (Tom Wilson)
Talent wins games, but teamwork and intelligence wins championships. (Michael Jordan)

Ammon

#52
Two Caveats with the respec macro.
First:> you need to rename primary or secondary to match your gearset names, or what i did was just name all the gearsets after the macro so one macro was valid for all sixteen characters.

Second:> this will NOT work for warriors or shamans switching to dual wield as it gearswaps first then respecs, due to the respec having a cast time and being unable to swap kit while still casting.
The specs outside of dedicated dual wield can't put a weapon in the offhand so the ui just gives an error on gearswap then switches spec.

I posted the thing mid raid hence it seeming rushed, lacking the above info.

TeaLeaf

Macro to change the ability use depending on the spec you chose.   For example, this one will cast whatever Tier 1 talent you selected in your build.

#showtooltip
/use Void Tendrils
/use Psyfiend
/use Dominate Mind
/script n_vt=GetSpellInfo(108920); n_pf=GetSpellInfo(108921); n_dm=GetSpellInfo(605)
/run SetMacroSpell("15", GetSpellInfo(n_vt) or GetSpellInfo(n_pf) or GetSpellInfo(n_dm))

This one does the Tier 6 talent choice:
/use [@mouseover,help]Cascade;[@target]Cascade
/use divine star
/use halo
/run m_c=GetSpellInfo(121135); m_ds=GetSpellInfo(110744); m_h=GetSpellInfo(120517)
/run SetMacroSpell("90", GetSpellInfo(m_c) or GetSpellInfo(m_ds) or GetSpellInfo(n_dm))
Important to note that the macro *HAS* to be named '15' for the first one, or '90' for the second one.   Etc.
TL.
Wisdom doesn\'t necessarily come with age. Sometimes age just shows up all by itself.  (Tom Wilson)
Talent wins games, but teamwork and intelligence wins championships. (Michael Jordan)

Tanales

World Boss looted check
/run for k, v in pairs({ Galleon = 32098, Sha = 32099, Oondasta = 32519, Celestials = 33117, Ordos = 33118, Nalak = 32518})
do print(format("%s: %s", k, IsQuestFlaggedCompleted(v) and "\124cff00ff00Yes\124r" or "\124cffff0000No\124r")) end
EVE-Online: Lurek Andilles and Cerok
WoW: Tanales, lvl 90 Hunter on Aszune
BattleTag: Lurek#1103


     

Deminion

Anyone still responding in this thread?

Trying to build a macro for a holy paladin

#showtooltip/cast [@mouseover, exists, noharm][@hbtarget, exists, noharm][@focus, exists, noharm][@player] Holy Light
/cast [mod:ctrl][@mouseover, exists, noharm][@hbtarget, exists, noharm][@focus, exists, noharm][@player] Flash of Light

Trying to build Holy Light and Flash of Light together, with ctrl as a modifier for Flash of Light. However i only get to cast Holy Light, and 2nd part won't trigger.