 |
11/21/10, 2:11 PM
|
#136
|
|
Glass Joe
Blood Elf Priest
Runetotem
|
Anyone has trouble with holy word macros and mouseover? Since the patch, none of them works.
Any clue ?
|
|
|
|
|
11/22/10, 9:16 AM
|
#137
|
|
Banned
None
Gnome Warlock
No WoW Account
|
Originally Posted by aboshan
Anyone has trouble with holy word macros and mouseover? Since the patch, none of them works.
Any clue ?
|
The only problem I've had is with Holy Word: Chastise, since when you activate your charka state it actually changes in to a differently named spell, my mouseover macro wouldn't work (unless I made 3 of them), but of course it still works as a key bind. Has anyone else figured out how to macro these spells?
|
|
|
|
|
11/22/10, 12:36 PM
|
#138
|
|
Don Flamenco
Eivan
Human Priest
No WoW Account (EU)
|
Originally Posted by TrlstanC
The only problem I've had is with Holy Word: Chastise, since when you activate your charka state it actually changes in to a differently named spell, my mouseover macro wouldn't work (unless I made 3 of them), but of course it still works as a key bind. Has anyone else figured out how to macro these spells?
|
That spell is a train wreck to macro. At one point you could macro it using the default name, and provided you had the spell on an actionbar button it would still work in the macro with the original name. This seems not to work any more.
The next best thing I've managed is a macro that does a /target on your mouse over target, uses /click to cast the spell, and then does a targetlasttarget to revert. This fails horribly when you don't have a mouseover target as there is no way to make the target reset at the end conditional on having changed it in the first place. Not at home at the moment but will dig it out later and add to this post.
|
|
|
|
|
11/22/10, 11:01 PM
|
#139
|
|
Glass Joe
Tauren Druid
Earthen Ring
|
Don't mean to steal darchrys's thunder, but here's the macro I'm using:
/tar [@mouseover,exists]
/click (button)
/targetlasttarget
If you're as LUA/macro retarded as I am and are using a button mod, use this to find out which button you're binding the un-macro'd Chastise to, to fill in the (button) portion:
/run local f = GetMouseFocus(); if f then DEFAULT_CHAT_FRAME:AddMessage(f:GetName()) end
Note, you DO have to have the un-macro'd Chastise somewhere on a bar to reference in the above macro. And yes, omit the parentheses around (button).
Last edited by Javyrha : 11/23/10 at 9:03 PM.
|
|
|
|
|
11/29/10, 5:03 AM
|
#140
|
|
Von Kaiser
Blood Elf Priest
Vek'lor (EU)
|
Hey, i am very interested in this macro.
I'm using Bartender4 for my action bars.
How can I find out the "name/number" of the HW:C-button to fill in this macro?
I also have a question to some macros.
I want to add "/cast Chakra" to my Heal and PoH-Spells, but these macros don't work with Healbot, because i always cast these Spells on myself not depending on who I target in healbot.
excample:
/cast Chakra
/cast Prayer of Healing
Do I have to add any lines to make this macro work correctly?
If these macros work, I will never have to care about the uptime of Chakra and I also can spend 2 points for some other talents, because State of Mind is then kind of useless (Ckakra doesn't use a GCD and also costs no mana).
Last edited by flo-joe86 : 12/01/10 at 2:40 AM.
|
|
|
|
|
11/29/10, 12:25 PM
|
#141
|
|
Glass Joe
|
to make a macro work with healbot, you need to make your macro cast at "hbtarget" (vuhdo uses "vuhdo"), so do this.
/cast chakra
/cast [@hbtarget] prayer of healing
Holy word: Serenity won't work like this since it's a morphed spell, you need to macro it like this.
/target [@hbtarget]
/click BUTTON
BUTTON is the name of the button where you have holy word: chastise dragged from your spellbook, this can be found by mousing over the button and running this macro (credit to Javyrha).
/run local f = GetMouseFocus(); if f then DEFAULT_CHAT_FRAME:AddMessage(f:GetName()) end
You can add some extra stuff to the serenity macro depending on how you want the targetting to function, for example, I have it store my current target as my focus and retarget it, although this would erase your focus target. This is my macro.
/focus
/target [@vuhdo]
/click BT4Button22
/target [@focus]
/clearfocus
One last bit, since the serenity macro does essentially cast the spell by just clicking the button, if you alt self-casting on, and you have the macro bound to a bind with alt, it will always cast it on you, rather than your target.
Last edited by napsilan : 11/29/10 at 12:32 PM.
|
|
|
|
|
11/29/10, 1:34 PM
|
#142
|
|
Glass Joe
Undead Priest
Bleeding Hollow
|
Originally Posted by Lahiri
There's quite a nasty bug with Inner Focus that I didn't see mentioned anywhere else here.
If you activate it right at the end of a cast that would benefit from IF then the buff gets consumed but you won't get the actual benefit of the cooldown.
|
I am not seeing this happen to me. What spell were you trying this for? I tried it with GHeal a few times and I don't see this result. Maybe its the Blizzard Latency Reducer messing you up?
|
|
|
|
|
11/29/10, 1:41 PM
|
#143
|
|
Von Kaiser
Troll Shaman
Borean Tundra
|
I've run into a similar bug, where after activating Chakra and casting one of the trigger heals (Heal, PoH), my Chakra will go away, but I won't be put into a state at all. The cooldown on Chakra still gets burned.
It doesn't happen every time, and the first few times I thought it was a problem with my power auras or the buff not showing up correctly, but it was just not applying.
I'll try to trap the combat logs if it happens again, but I'm curious if anyone else has seen the same thing.
|
|
|
|
|
11/29/10, 4:17 PM
|
#144
|
|
Priestamatician
|
Chakra not activating happens occasionally for me too.
|
|
|
|
|
11/29/10, 4:26 PM
|
#145
|
|
Von Kaiser
Blood Elf Priest
Vek'lor (EU)
|
Originally Posted by napsilan
...This is my macro.
/focus
/target [@vuhdo]
/click BT4Button22
/target [@focus]
/clearfocus
One last bit, since the serenity macro does essentially cast the spell by just clicking the button, if you alt self-casting on, and you have the macro bound to a bind with alt, it will always cast it on you, rather than your target.
|
Thanks alot. The "Chakra"-macros work well, but the chastise one does not.
This is my macro: name = Test
/target [@hbtarget]
/click BT4Button97
Then I went into my Healbot Options and entered this macro name (Test) as my spell.
Doesn't work
Last edited by flo-joe86 : 12/01/10 at 2:41 AM.
|
|
|
|
|
11/30/10, 12:01 AM
|
#146
|
|
Glass Joe
Gnome Warrior
Black Dragonflight
|
I'm probably one of the few DISC priests left for PVE - and with that said does anyone else feel that penance isn't worth having anymore. I mean - my flash heal as a disc priest is hitting for 13k - and 20k crit, while my penance takes just as much time hitting for right around 12k-14k - in the long run, i'm not sure its worth what it was... should i just spec into holy?
|
|
|
|
|
11/30/10, 1:03 AM
|
#147
|
|
Honorary Toastr
Night Elf Priest
Dragonblight
|
Penance is still faster. Flash Heal has a cast time, the heal lands at the end of said cast time. Penance is channeled and starts to tick instantly.
Additionally, Penance provides three opportunities to put up Divine Aegis and/or Inspiration when available. It will also instantly stack Grace on a target. Whereas it would take you 3 Flash Heals.
This is of course all the perks of Penance without even evaluating your assessment on Flash Heal healing for more than Penance, I do not believe it does, but that aside the spell is still better/useful.
|
Originally Posted by arison
Everyone should start from the same place and rise based on their abilities, desires, and schedule. No one plays MMOs to *be* powerful, they play MMOs to *become* powerful. It's the journey, stupid. The rarer loot is, the more cherished it is when you get it, but only so long as there is a reasonable expectation to get it. The rarer loot is, the better it feels when you kill a boss or when $AWESOME_TRINKET drops.
|
|
|
|
11/30/10, 4:10 AM
|
#148
|
|
Glass Joe
Night Elf Priest
Ткач Смерти (EU)
|
Originally Posted by stouthardy
I'm probably one of the few DISC priests left for PVE - and with that said does anyone else feel that penance isn't worth having anymore. I mean - my flash heal as a disc priest is hitting for 13k - and 20k crit, while my penance takes just as much time hitting for right around 12k-14k - in the long run, i'm not sure its worth what it was... should i just spec into holy?
|
I think you have to just wait for 85 lvl  Then you will not cast Flash Heal so often as now cause it will cost much more mana then now. And as far as I understand it should be used in emergency and not spammed like nowadays 
|
|
|
|
|
11/30/10, 10:51 AM
|
#149
|
|
Von Kaiser
Draenei Priest
The Forgotten Coast
|
Originally Posted by Starfire
Additionally, Penance provides three opportunities to put up Divine Aegis...
|
I agree with almost everything you said regarding Penance, but I just wanted to point out that just because it divides its heal over 3 ticks doesn't make the DA chance on Penance any better in the long run. Yes, you have 3 chances to proc DA, but each chance is only for 1/3 as much. In the long run, its the same % as multiple FHs, it's just an all or nothing situation for each individual FH.
|
Originally Posted by vorpalblade
... it just begs to be repeatedly reported, over and over, as though reporting a post could somehow be analogous to stabbing someone in the face with a knife forged out of their own concentrated stupid.
|
|
|
|
11/30/10, 2:03 PM
|
#150
|
|
Banned
None
Gnome Warlock
No WoW Account
|
I've done ICC both with and without Atonement, and I'd say that the healing from Atonement vs Heal was very similar. I actually preferred the timing of Atonement because it seemed to be targeted fairly intelligently and the heal would land on whoever just got hit, it does a pretty good job of topping up the tanks and melee during light damage.
But who cares about light damage, right? I ended up not using Atonement because there were too many times when my stacks of Evangelism were about to fall off and I had to decide between using a good heal and casting smite (so Evangelism would be ready in 5 or 10 secs when I wanted the +healing) usually because I had to spend too much time running around.
It used to be worth it to pop the stacks just to get the 15% mana back, but now that it's only 5% the main benefit of Archangel is the bonus healing, and I found it was just too much hassle to manage it.
Of course at 85 things are supposed to be less hectic, and mana will be more of an issue, so that's a whole different story, but if you're doing LK or RS in the next 7 days I'd stick with spell mechanics you're used to instead of trying to manage something new to gain a marginal benefit.
Last edited by TrlstanC : 11/30/10 at 2:05 PM.
Reason: spelling, ugh.
|
|
|
|
|
Similar Threads
|
| Thread |
Thread Starter |
Forum |
Replies |
Last Post |
| Surviving as a Priest |
Xavias |
Player vs. Player |
946 |
09/14/09 2:15 PM |
|