yes, but I want to have him as a target. that's the best way to see the hour of twilight cast for me. (i know, focus cast bars would work too, but i don't have them)
guess I have to do something like target the target of my target if [harm] or something... haven't done that one before![]()
TryCode:/tar boss1
Using @Ultraxion would not work, since he is not in your party/raid group he wouldn't have a valid UnitID by name.
Gershuun @ Borean Tundra US - Interface & Macros Moderator
Hello I am asking for assistance by the proes ala proes in macro / scripting. For starters, is it even possible to make a macro for paladins with Hand of Protection that only allows it to be cast on a non tank( etc for heroics the tank has the tank role, and that should be a string somewhere ) is it possible to bring that string into a macro and make it so Hand of Protection cannot be cast on the tank to avoid mistakes before they are made
just a thought I had xD
Sopa & Pipa was the day they went to far
UI & AddOns expert | Interface & Macros moderator - My work
oh well, would mby have been to fool proff but if that would have been possible it would have opened up for some mean macro possibilities in pvp regarding healer spotting and straight up attacks that would prior healers above others xD
Sopa & Pipa was the day they went to far
Hey guys, im looking for a macro that sets my focus target through mouseover (if any), otherwise it focuses my current target![]()
That's the thing about RNG. It doesn't hate anybody - it just goes about its business, oblivious to the world around it.
So i was reading backwards in posts and found this one... and even tho it was dismissed as impossible at the time I remembered making a similar macro, with my extremly low macro-making-abilitys by fooling around, that seemed to work not long ago.
It does what he asks for, but requires button spam since it seems to "cut" the spell-que on a few lightning bolts. I stopped using it tho since it also ofc didn't take into account if there was 0.1 sec untill the next lava burst would be aviable, and would start casting lightning bolt insted. In the end it would cost me around 1k dps on a 5 min fight and between that and the button-spam/laziness i stopped using it.
I'm sure someone here can explain the problems with spell-queing beeing messed up, but other than that it seems to work like it should?
/run SetCVar("Sound_EnableSFX","0")
/castsequence Lightning Bolt, Lightning Bolt
/castsequence Lava Burst
/run SetCVar("Sound_EnableSFX","1")
/script UIErrorsFrame:Clear()
Im trying to make a macro to prepare for Ultraxion heroic.
i want all 3 of them casted when i press shift, but only IBF and AMS when i dont press shift. how do i do this?/cast Icebound Fortitude
/cast Anti-Magic Shell
/cast [modifier:shift] Anti-Magic Zone
Last edited by Friberg; 2012-02-16 at 05:04 PM.
UI & AddOns expert | Interface & Macros moderator - My work
Hey,
i have a guildie who recently got Mimiron's Head mount(that lucky sob). And he is getting loads of whispers while in town asking where did he get it. So he was wondering if it's possible to make an macro to reply a whisper with the achievement?
In this case it would be this
Thanks for the help.![]()
* Treeston -Just logged the shaman to test it, and it still works. It wasn't that long ago i made it :P
@Friberg
should work just fine. I havent been able to test it but it should workCode:/cast [mod:shift] Icebound Fortitude; Icebound Fortitude /cast [mod:shift] Anti-Magic Shell; Anti-Magic Shell /cast [mod:shift] Ant-Magic Zone
Hi, i would like a warrior macro (for pvp) that would do all of this on the same one button.
If an enemy is targetted, it uses charge (on the targetted enemy).
If i mouseover an enemy, it uses charge (on the moused over enemy).
If i mouseover an ally, it cast defensive stance and uses intervene (on the moused over ally).
Thanks
UI & AddOns expert | Interface & Macros moderator - My work
I'm looking for a way to with a macro send a chat message to "smart group" (that some addons use); /r if I'm in a raid, /p if I'm in a party and /s if I'm in none. Currently this is what I have.
And ofc it's the question marks that I need to replace with something that can help me find out what kind of "party-state" I'm in. A bonus would also be if there's a way a macro can find out what race I am so I don't have to replace the language part depending on which toon I'm using. I'm rather new to this kind more advance macro-ing so there might be other mistakes in there as well, feel free to point them out, I havn't really been able to test it since I don't have anything to test it with yet.Code:local chan = ??; local c = "SAY"; if(chan == ??) then c = "RAID"; else if (chan == ??) then c = "PARTY"; end local mess = "my message"; SendChatMessage(mess, chan, "TROLL", nil);