 |
02/28/08, 8:45 PM
|
#211
|
|
Piston Honda
Undead Mage
Jaedenar (EU)
|
Ahh right, I forgot you could set it up like that (with a /cast for each). I bet you're getting a lot of errors though.
I have a feeling that line 3 and 4 are checking the targetoftarget's hostility. So replacing harm with help should do the trick.
/cast [help, mod:alt] Binding Heal
/cast [help] Flash Heal(Rank 8)
/cast [help, target=targettarget, mod:alt] Binding Heal
/cast [help, target=targettarget] Flash Heal(Rank 8)
/cast [target=player, mod:alt] Flash Heal
/script UIErrorsFrame:Clear()
Added a line to clear errors.
Let me know if it works 
|
|
|
|
|
02/29/08, 12:00 AM
|
#212
|
|
Glass Joe
Troll Mage
Twisting Nether
|
Originally Posted by Chicken
Try turning the /script line into:
/script if GetRaidTargetIndex("focus") ~= 1 then SetRaidTarget("focus", 1) end
Not sure if it'll still fit though.
|
Thanks dude, it was 3 letters to long unchanged so i dropped the ctrl in modifier, since i use ctrl - 1 for the keybinding
So now it looks like
/focus [modifier:alt/shift,harm] target; [target=focus,harm,exists,nodead] focus;
/cast [target=focus,exists,nodead,harm] Polymorph(Rank 1: Turtle); Polymorph(Rank 1: Turtle)
/script if GetRaidTargetIndex("focus") ~= 1 then SetRaidTarget("focus", 1) end
|
|
|
|
|
02/29/08, 5:49 AM
|
#213
|
|
Glass Joe
Night Elf Death Knight
Khadgar (EU)
|
Originally Posted by Jaizha
Try Deathwing's maco with a small change:
/targetexact Shadowy Necromancer
/cleartarget [dead]
|
Saw this the other day and tried it in a raid, but this seems to get the same error as was mentioned earlier, i.e. that it works fine on the first group, but after that it doesn't want to select anything at all. Anyone else got a suggestion as to how I might get it to work?
|
|
|
|
|
02/29/08, 5:16 PM
|
#214
|
|
Glass Joe
|
/cast [help, mod] Binding Heal
/cast [help] Flash Heal(Rank 8)
/cast [help, target=targettarget, mod] Binding Heal
/cast [help, target=targettarget] Flash Heal(Rank 8)
/cast [target=player, mod] Flash Heal
/cast Flash Heal
/script UIErrorsFrame:Clear()
It's completely working now! Had to add the "/cast Flash Heal" at the end, otherwise nothing would happen if I had no target at all while using the macro without a modifier key.
Too bad the macro is "full" now, because I cant add the "#showtooltip Flash Heal" thing anymore. It shows the icon of Flash Heal, but the actual tooltip is blanco.
Thanks for your help all.
|
|
|
|
|
02/29/08, 6:15 PM
|
#215
|
|
Piston Honda
Undead Mage
Jaedenar (EU)
|
Originally Posted by Vidofnir
Too bad the macro is "full" now, because I cant add the "#showtooltip Flash Heal" thing anymore. It shows the icon of Flash Heal, but the actual tooltip is blanco.
|
Just #show or #showtooltip should be enough if you have room for it. Also, there are ways to cut a macro in pieces and have them trigger one after another (so you can bypass the character limit). An easier way to get extra characters is by saving on "spaces"; like /cast[help,mod]Binding Heal etc.
|
|
|
|
|
02/29/08, 7:06 PM
|
#216
|
|
Glass Joe
|
Ah, yes, "#showtooltip" without the spellname works (just "#show" does not).
Same goes for removing spaces. "/cast [help,mod]Binding Heal" works, but "/cast[help,mod]Binding Heal" does not.
I think I can say the macro is perfect now!
#showtooltip
/cast [help,mod]Binding Heal
/cast [help]Flash Heal(Rank 8)
/cast [help,target=targettarget,mod]Binding Heal
/cast [help,target=targettarget]Flash Heal(Rank 8)
/cast [target=player,mod]Flash Heal
/cast Flash Heal
/script UIErrorsFrame:Clear()
In exactly 255 characters.
|
|
|
|
|
03/01/08, 2:05 AM
|
#217
|
|
Von Kaiser
|
I'm pretty sure what I want to do isn't possible, but I would like to hear it from someone else anyway before I abandon the idea:
I used to use just mouseover macros for all my healing but recently started using Clique as well. Changing keybindings made me realize that it would be cool to have a macro that, if my mouseover target is not me, casts Binding Heal, and I am mouseover, to cast Prayer of Healing instead (I can't cast BH on myself, and I can't choose targets for PoH, so this would save me a keybind). However, 30 minutes of half-asleep thought on how to write such a macro has been fruitless. I actually don't think it's possible for a macro to contain such logic any more, but if it is I would love to see it.
In case there's any confusion, I don't want to use modifiers for this; I want shift-middle click to cast BH on my mouseover, and PoH if I am moused over myself; ideally if I have no mouseover, I would have a queued BH that needs a target, but that's not a big deal.
|
|
|
|
|
03/01/08, 12:35 PM
|
#218
|
|
Piston Honda
Undead Mage
Jaedenar (EU)
|
@ Vidofnir
Yeah, I figured you would notice my errors, so I didn't test any of it. Also I'm glad it's finally perfect
@ Morakk
Check the last posts by Vidofnir - he/she had a similar problem.
|
|
|
|
|
03/01/08, 2:49 PM
|
#219
|
|
Von Kaiser
|
For those of you trying to squeeze in as many characters as possible: /use and /cast do exactly the same thing, and /run and /script as well, so that can save you a dozen characters for the long ones
Also Vidofnir, is there a reason sometimes you are explicitly casting rank 8 flash heal, and at the end, max rank? If you want to only use max rank, you can leave out the (rank 8) for a few more characters.
Thanks for pointing out Vidofnir's posts, Ajuga....last night I skimmed over them because I thought he was just trying to do something tricky with modifiers and target of target, I feel dumb for posting asking about the same thing now.
I finally did figure out how to get exactly what I wanted though, by reading those posts:
#showtooltip
/stopcasting
/use [target=mouseover,help]Binding Heal
/use Binding Heal
/use [target=mouseover,help]Prayer of Healing
1) Friendly mouseover not me: BH them
2) Friendly mouseover that's me: PoH
3) Otherwise: queue a BH
|
|
|
|
|
03/02/08, 6:17 PM
|
#220
|
|
Glass Joe
|
Originally Posted by Morakk
Also Vidofnir, is there a reason sometimes you are explicitly casting rank 8 flash heal, and at the end, max rank? If you want to only use max rank, you can leave out the (rank 8) for a few more characters.
|
I downrank it one rank when using it on others (getting +2800 healing raid buffed), cause its a difference of 70 mana between the max rank (9) and Rank 8, quite a lot. I will only use Flash Heal on myself in very rare occasions (HS/Desperate Prayer on Cooldown, noone else in the raid on low HP to use Binding Heal on) so in that case I just use the Max rank. That's why 
|
|
|
|
|
03/02/08, 7:01 PM
|
#221
|
|
Glass Joe
|
Looking for a Wind Serpent Macro, for lightning breath, anyone know 1? been looking around
|
|
|
|
|
03/02/08, 7:50 PM
|
#222
|
|
Piston Honda
Undead Mage
Jaedenar (EU)
|
Originally Posted by genocide231
Looking for a Wind Serpent Macro, for lightning breath, anyone know 1? been looking around
|
Half a second of googling got me this:
/cast [target=pettarget,exists] Lightning Breath
|
|
|
|
|
03/03/08, 1:54 AM
|
#223
|
|
Glass Joe
|
Originally Posted by genocide231
Looking for a Wind Serpent Macro, for lightning breath, anyone know 1? been looking around
|
This is what I'm using on my Hunter alt, it's probably not perfect, but it works for levelling up
#showtooltip Steady Shot
/script UIErrorsFrame:Hide()
/castrandom [target=pettarget,exists] Kill Command
/cast [target=pettarget,exists] Lightning Breath
/castsequence reset=3 Steady Shot, !Auto Shot
/script UIErrorsFrame:Clear()
|
|
|
|
|
03/04/08, 2:28 AM
|
#224
|
|
Von Kaiser
|
I use an n52, and would like to asign the direction pad arrows to different bar numbers. When I hit one, Id like it to bring up the assigned bar, and when I release, go back to bar 1. Is there a way to set this up? I could just assign another button to take me back to bar one, but I think it would take longer, and Id lose a bit of an edge.
|
|
|
|
|
03/04/08, 8:01 AM
|
#225
|
|
Glass Joe
Jaitee
Blood Elf Hunter
Thaurissan
|
Hey, I would just wondering if anyone could help me with a macro issue.
Is it possible to only /p or /rw when the above action is successful?
For example, my scatter shot macro is:
/cast Scatter shot[target=focus]
/rw Scatter shot on %f
If the scatter shot is not successful for any reason, is there a way to not post the following line?
|
|
|
|
|
|