• Home
  • Guides
  • Resources
  • Blogroll
  • Contact
  • Authors
  • Tree Shirts
  • Entries | Comments
  • Subscribe via E-Mail
  • Tree Shirts
  • Recent Comments
  • Mana Regen Calc.
  • The World Tree

Favorites

  • /hug
  • 4 Haelz
  • Banana Shoulders
  • Big Bear Butt
  • BigRedKitty
  • Gray Matter
  • Leafshine: Lust for Flower
  • Lume the Mad
  • Of Teeth and Claws
  • Out of Mana
  • Parry! Dodge! Spin!
  • Think Tank
  • Tree Bark Jacket
  • Unbearably HoT
  • Yet Another Warlock Nerf
  • View Full Blogroll

Recent Achievements

Blogroll Highlights

  • Flyv’s Warcraft Blog
  • Healer Envy
  • Spam Moonfare
  • Druid Heal
  • Pookies is not a Bear

Categories

Archives

I blog Azeroth. Do you?

Creative Commons License

Featured Post

Featured: Andrige’s Shapeshift Skins

Tired of the shapeshifting into the same low-quality forms that have been in the game since day 1? Andrige has created a beautiful selection of modified form skins to make your life as a Druid a lot more enjoyable.

Read More | All Featured Posts

Recent Posts

  • Living Seed, Replenish, and Gift of the Earthmother
  • Guest Post: Leveraging Shadowmeld
  • 2008: A Retrospective
  • U.S. and Canada: Save 20.09% on Resto4Life Tree Shirts!

Phaelia Adding Trinkets to Your Macros

Published on June 18, 2007 by Phaelia
Items and Equipment, Lunar Guidance, Macros
12 Comments

With the release of the Burning Crusade expansion, several healer-oriented, on-use trinkets were added to the game. Unfortunately, using trinkets like these requires a lot of micromanagement, so much so that many players take less advantage of these items than they might otherwise. An addon like Gello’s Trinketmenu is helpful for cycling through multiple trinkets, but it can be difficult to remember to actually use your trinkets so that the addon can do its work. To ensure that you actually use your trinkets, you can add them to a macro:

#showtooltip Lifebloom

/script UIErrorsFrame:Hide()

/use 13 (13 = upper trinket; 14 = lower trinket)

/script UIErrorsFrame:Clear(); UIErrorsFrame:Show()

/cast [help] Lifebloom;

Note: The “/script UIErrorsFrame:Hide()” and “/script UIErrorsFrame:Clear(); UIErrorsFrame:Show()” lines above are optional but are useful for hiding the “item cannot be used” errors that automatically occur when the trinket you have equipped is on cooldown.

In the above example, trinket use is tied to the Lifebloom spell. I consider this spell ideal since you can easily opt to forego using it in any given fight should you need to save the trinket’s use for an upcoming boss fight. Using it normally, however, will result in your use of a trinket every time one is available. Once the fight is over, Trinketmenu will automatically cycle in the next in the series you have created. Adding a trinket call like this one to one of your heal buttons is an excellent way to get the most return for the inventory slots occupied by multiple trinkets.

On a related note, be sure to check out the Fade! Not just for Priests anymore. article for help staying alive when you have to perform a large burst of healing to keep one or more group members alive.

Related Posts

  • Getting More out of Innervate
  • 2.4 Mana Regen: Getting the Most out of Innervate
  • Arrrghhh!!! Trinkets!!!
Categories: Items and Equipment, Lunar Guidance, Macros

12 Comments

Make A Comment | Set My Avatar
  • Gravatar boy

    Hi Phaelia,

    For a druid that always forgets to use trinkets, this macro is awesome!.

    However, I am running into a problem and was hoping that you or one of the many readers had a fix for.

    The problem is this: When you activate the macro with the trinket on cooldown, wow plays the ‘error’ sound. The macro already deals with the error message that would normally appear, but it does not deal with the sound. The problem this causes is that I can no longer tell if there is actually a problem with casting the heal - such as the target is out of range.

    Have you encountered this? and if so, how do you work around it (if at all..).

    -Larathis (Windrunner-US)

    8:52 am on 9/27/07
  • Gravatar Phaelia

    boy,

    Thanks for the comments! I have done some research on your question (via WoWWiki) and haven’t found any type of script like UIErrorsFrame:Hide() that would temporarily disable the error sounds. Even if there were such a script, however, I don’t think it could be subjectively applied to an error related to not having the item and not applied to issues occuring with the heal itself. For me, I have all error speech disabled and watch my cast bar to see if my heal is going off, reducing my dependence on auditory feedback (which is important since my husband and I play in the same room).

    I wish I could offer more help, but I’m afraid it’s a limitation of the LUA that I’m not sure can be overcome. Anyone else have any ideas?

    3:51 pm on 9/27/07
  • Gravatar Larathis

    Phaelia,

    OK, thanks for checking that for me. I was hoping for something similar to the UIErrorsFrame:Hide(), but more like ErrorsSounds:Disable() that I could wrap around the trinket switch to selectively prevent any sound from it.

    As for my name, its actually Larathis lol. My lovely girlfriend created a blogger account for me a while ago and it appears to have picked up that account name. All fixed now :)

    Thanks again.

    1:09 am on 9/28/07
  • Gravatar Fizzler

    /run SetCVar(”Sound_EnableSFX”,”0″)
    /use 13
    /use 14
    /run SetCVar(”Sound_EnableSFX”,”1″)
    /castsequence X , Y, Z

    6:00 pm on 11/4/07
  • Gravatar Falina

    i tried that macro last night during ZA and quickly stopped using it as i found it took too long to cast the spell when the trinket was on cooldown. Any idea how to optmize this? The idea is great, i have essence of the martyr and ribbons of sacrifice hotkeyed and use them as much as possible but sometimes forget about them during trash.
    Also, i would love to build a macro to use nature’s swiftness with regrowth every time it’s up, any idea how this can be done?

    Thanks and keep up the good work.

    1:12 pm on 1/6/08
  • Gravatar Phaelia

    @Fizzler: Good to know!!

    @Falina: I’m afraid I’m not sure why it would slow down your casting when your trinket was on cooldown. I don’t think I’ve run into that problem. As for the macroing of Nature’s Swiftness and Regrowth, this should work the same as a Nature’s Swiftness + HT:

    #showtooltip Nature’s Swiftness
    /cast Nature’s Swiftness
    /stopcasting
    /cast Regrowth

    I’m not 100% sure whether you still need the /stopcasting line, but it shouldn’t hurt anything to include it.

    11:39 am on 1/8/08
  • Gravatar Falina

    thanks for the info, im a noob when it come to macros, ill try it tonite and will keep u posted.
    what are the mechanics of castsequence? would using castsequence instead of just using /cast end then enter optimize the process? Can anybody link a good macro rules website?

    Once again great work, i linked your site in the drood section of my guild and hope the other resto droods in my guild wil come by…(www.edgeofagression.com)

    12:29 pm on 1/8/08
  • Gravatar Phaelia

    @Falina: The disadvantage of using /castsequence is that you will always have to press your button twice. By using the macro I list above, you should only have to press your button twice if you are moving while casting. For an amazing resource on macros (and how they can be leveraged for healers in particular), I’d like to direct you to Kirk’s Priestly Endeavors’ series, which you will find listed here: http://wordpress.com/tag/tools-addons-macros-and-others/

    5:38 pm on 1/9/08
  • Gravatar Kalimantan

    I have the same issue as Falina, if I don’t macro I can easily have LB up on 4 targets at a time with my latency, if I macro it I sometimes lose a stack even on 3, for some reason it seems that having the use macro induces lag when the trinket is on cooldown, which is unfortunate as I’d love to be able to automate my prayerbook…

    1:37 pm on 3/17/08
  • Gravatar Phaelia

    @Kalimantan: I wonder if this isn’t related to the same problem you have if you try to switch your weapon then shapeshift (as opposed to shapeshift then change your weapon). I would suggest switching the order, but you obviously want the trinket to be effective before activating the spell, not after. =/

    12:40 pm on 3/19/08
  • Gravatar BattleCattle

    I made a quick discovery when using this macro, it becomes very difficult to self cast in my normal way, so when theres a lot of splash damage being thrown around and I have to worry about staying alive to heal the party, I suddenly found myself having to debug macros >_<

    In the end I came up with a solution much like this which should hopefully help other restos, I now use this macro for all my heal spells =)

    #showtooltip Lifebloom
    /script UIErrorsFrame:Hide()
    /target [mod:alt] {Your name here}
    /use 13 (13 = upper trinket; 14 = lower trinket)
    /script UIErrorsFrame:Clear(); UIErrorsFrame:Show()
    /cast [help] Lifebloom;
    /targetlasttarget [mod:alt]

    {PS: Macro still subject to testing}

    4:47 am on 10/24/08
  • Gravatar Phaelia

    @Battlecattle: If I can ask, how are you attempting to self cast? I use a macro like this one for all my heals:

    #showtooltip
    /cast [mod:alt,target=mouseover,exists,help][mod:alt,target=target,help][mod:alt,target=player] Swiftmend; [target=mouseover,exists,help][target=target,help][target=player] Rejuvenation

    It would be easy to add a /use line to the above.

    3:42 pm on 10/28/08

Trackbacks

Comments RSS Feed   TrackBack URL

Leave a comment

 

Recent Comments

Guest Post: Leveraging Shadowmeld (23)

Penguinator
Our guild tried instructor Razuvious in H naxx and we had to try many different strategies, wiping a bunch or times because we had only 1 priest. Most of the time, i was assigned to raid healing and could heal in a corner above the arena. Whenever our tank died and he started one-shotting our raid (90k on a clothie, 30k on a tank) i shadowmelded and could start rezzing people. This was very useful, especially when the pallies ran out of reagents to DI.

Riverwish
As far as i’m aware they changed it so that when you meld in a raid instance you don’t leave combat so you can’t drink/eat or reset pot cooldowns in a raid bossfight, this is why you have to be quite lucky at escaping combat in a raid situation. I did manage to escape for Patchwerk numerous times but other bosses are trickier, I think it depends really on who your fighting and what room you’re in :) All these things can be done in 5 mans though. Riverwishs...

Vreenash
Thanks for posting this up Phae :) Keep the ideas flowing guys. It’s good to hear the different ideas and situations you’ve all been using shadowmeld in. Here’s another one for you: While leveling my way to 78 (still with the ground mount in northrend), there were quests that required killing a normal mob boss. They were usually in the centre of a town, camp or cave. Instead of killing all the mobs on the way to boss, just mount up and run directly to him....

Bearess
One note about SM that should be brought up. Yes it will bring you out of the fight in a lot of cases, but some bosses can still find you. AOE attacks will bring you out of a SM. So watch that. I learned that the hard way when Instructor Razuvious broke loose, and I skittered off a corner and SM. His next “victim” was too close to me when he let out his “Distrupting Shout” and I became next on his list. Figured I’d drop a line since it is a weakness to SM...

Arcaedus
Great info! I’ve often used SM to get out of combat when soloing but have put it to limited use in the instance/raid environment. @Riverwish: I’m not sure that you have to be the last player alive/targetable. I’ve had both successful and unsuccessful attempts with SM hiding on a wipe. My main example is on Patchwork. When multiple tanks go down and its a sure wipe, you are able to run behind one of the pillars and meld. As long as no one drags Patchy to you he should...
Living Seed, Replenish, and Gift of the Earthmother (13)

Werebeef
I don’t think viewing living seed as a % of total healing is really the best way to look at it. It’s great for helping a player that is at very low health get back up to very high health and do so quickly. You don’t look at nature’s swiftness as a percentage of overall healing. I don’t think it makes that much sense here either. It’s also a talent that is better when the content is hard, when you have less overhealing. There’s also something...

Kalfurion
Hi Phae, long time no talk. I want to point out that I’m 0/0/71 and I love it. I don’t really find the talents in the balance tree to be that useful for my needs. I’m in a raiding guild as I’m sure you know and the three talents you spoke about suit my needs so well. My rogues, DK’s and our feral druid love me when I keep a rejuv on them for replenish. I’ve joined pugs and people look at my spec and make silly jokes and I don’t know why,...

Kiryn
I really like Replenish, personally. I find myself with far more mana regen than I need in most boss fights, so mana conservation isn’t much of an issue for me. I don’t even know why I carry mana potions if I never use them, and I’m far more likely to be innervating the priests than myself. I often treat rejuv-swiftmend as a near-instant 8k heal on a 15 second cooldown. It isn’t cheap, but it can bring someone back from the brink of death in a little over a second...

Perrin
Phae, One thing that needs to be pointed out clearly to everyone is the misconception about “After spell haste” and the tooltip for GotEM. GotEM removes 0.3 seconds from your GCD. It doesn’t matter if its applied after or before spell haste, because its a factor of the 1.5 BASE GCD. Spell Haste is also a factor of the 1.5 BASE GCD. Therefore they don’t affect each other. The tooltip says 20%, but unlike the usual use of % based talents, the reduction is additive...

Phaelia
@Flynx: Thanks for the link - I’ve added it above to help flesh out the section about GotEM and spell haste! And I’m never sure whether information like this would be better suited to the Healing role forum or the Druid forum. >.< @Pike: I’m glad to hear that you’re still leveling your Druid. I imagine there is a lot of overlap between Hunter fans and Druid fans! (After all, as a Druid, you’re your own pet!) @Pfooti: Thank you! I’m glad you found it...
© 2008 Resto4Life. Some Rights Reserved. Original theme by Dezinerfolio. Respecced by Phaelia.