 |
| Welcome to Elitist Jerks |
We're testing some new features on the site regarding OpenID registration and coordination with gamerDNA. If you experience any issues with registering an account, please take the time to fill out a report and send it to this e-mail address. We would appreciate any assistance you could provide in making sure everything is functioning as intended. Thanks!
If this is your first visit, please be sure to check out the FAQ and the forum rules. Users must register to post and new registrations are subject to a one day "mute" period to get acquainted with the community.
|
03/28/08, 4:57 PM
|
#276
|
|
Piston Honda
|
I doubt that. Icons are merely there as visual reference, and dont really have a targeting aspect to them. If the macro did something like that, it would look for the UnitID that has the Skull associated with it, and target that unit; all of which I dont think is possible with a macro.
|
|
|
|
|
|
03/29/08, 12:06 PM
|
#277
|
|
Von Kaiser
Gnome Death Knight
Stormscale (EU)
|
Does anyone know how to create a macro that casts one spell on my focus target when i hold down alt and press the button and another spell on my current target when i just press the button? It's for interrupting healers with rank 1 Earth Shock in arena while still being able to use max rank Earth Shock on my current target without switching targets.
|
|
|
|
|
|
03/29/08, 12:19 PM
|
#278
|
|
Von Kaiser
|
Originally Posted by Oprahwinfury
Does anyone know how to create a macro that casts one spell on my focus target when i hold down alt and press the button and another spell on my current target when i just press the button? It's for interrupting healers with rank 1 Earth Shock in arena while still being able to use max rank Earth Shock on my current target without switching targets.
|
#showtooltip
/cast [modifier:alt, target=focus] Earth Shock(rank 1); Earth Shock
Is how you would do it...
|
|
|
|
|
|
03/29/08, 3:05 PM
|
#279
|
|
Von Kaiser
Gnome Death Knight
Stormscale (EU)
|
Thanks alot, works perfectly!
|
|
|
|
|
|
03/29/08, 5:51 PM
|
#280
|
|
Glass Joe
Undead Warlock
Madmortem (EU)
|
Is there a way around the 255 characters limit in a macro?
unfortunately i was unable to find any recent information on that subject, any addons that would allow me to get around the limit are at least 2 years old.
|
|
|
|
|
|
03/29/08, 6:02 PM
|
#281
|
|
Von Kaiser
|
Originally Posted by Inemos
Is there a way around the 255 characters limit in a macro?
unfortunately i was unable to find any recent information on that subject, any addons that would allow me to get around the limit are at least 2 years old.
|
I'm pretty sure there's a way to use scripts to reference other macros, but I, myself, am not well versed enough in that usage to be able to help you.
|
|
|
|
|
|
03/29/08, 7:44 PM
|
#282
|
|
Von Kaiser
Tauren Druid
Skullcrusher
|
Originally Posted by Inemos
Is there a way around the 255 characters limit in a macro?
unfortunately i was unable to find any recent information on that subject, any addons that would allow me to get around the limit are at least 2 years old.
|
SuperMacro will let you reference macros with well over 1000 characters in a normal macro. It hasn't been updated in ages because there's been no need for it to have been. It does everything you need it to do, and patches haven't broken it.
|
|
|
|
|
|
03/30/08, 5:31 PM
|
#283
|
|
postcount++
Malan
Tauren Shaman
No WoW Account
|
I'm trying to make a macro that would serve dual purpose for Arena and raiding at the same time. The idea would be:
if Focus exists and is Harm, cast earthshock [target=focus]. If Focus exists and is Help, Assist Focus.
Is that possible? Not sure what the syntax is if anyone can help out.
|
Shitting up every single thread on EJ since '06
|
|
|
|
03/30/08, 6:49 PM
|
#284
|
|
Von Kaiser
Human Death Knight
Greymane
|
/cast [target=focus,harm] Earth Shock
/stopmacro [target=focus,nohelp]
/assist [target=focus]
|
|
|
|
|
|
04/02/08, 11:57 PM
|
#285
|
|
Von Kaiser
|
Is there a way to use petfollow/petstay in a castsequence macro? I want one button to toggle stay/follow, but in a cast sequence it doesn't work. I am currently just using a modifier for it, but having one button would be more convenient.
|
|
|
|
|
|
04/03/08, 12:11 AM
|
#286
|
|
Now you're thinking with portals!
Undead Rogue
Twisting Nether
|
Originally Posted by bimmian
Is there a way to use petfollow/petstay in a castsequence macro? I want one button to toggle stay/follow, but in a cast sequence it doesn't work. I am currently just using a modifier for it, but having one button would be more convenient.
|
You could always do something like:
/petfollow [nomodifier]
/petstay [modifier]
or
/petfollow [button:1]
/petstay [button:2]
|
|
|
|
|
|
04/04/08, 4:53 AM
|
#287
|
|
Glass Joe
|
HunterPetSequence
Originally Posted by bimmian
Is there a way to use petfollow/petstay in a castsequence macro? I want one button to toggle stay/follow, but in a cast sequence it doesn't work. I am currently just using a modifier for it, but having one button would be more convenient.
|
Not sure if it's been mentioned in this thread yet or not but Cogwheel has written a great mod to handle just these types of macro requests. It's called MacroSequence and you can grab it from wowi.
In order to solve your problem you'd create the following sequence in Sequences.lua adding it to the already definite table MacroSequence.sequences under the examples:
HunterPetToggle = { "/petstay", "/petfollow", }
Once you've created the sequence it's just a matter of setting a keybinding for it. This can be accomplished in two different ways. You can simply create a stock wow macro containing "/click HunterPetToggle" or you can use the SetBindingClick() API function:
/run SetBindingClick("CTRL-2"), "HunterPetToggle") SaveBindings(GetCurrentBindingSet())
Once you're comfortable using this addon the sky is literally the limit. Not only can you create complex chain sequences but you can also get around the wow macro 225 char limit.
|
|
|
|
|
|
04/04/08, 9:04 AM
|
#288
|
|
Piston Honda
Tauren Hunter
Jaedenar (EU)
|
^ Now this looks handy! And I guess you can use it for "normal" macros too if you're out of /macro slots.
|
|
|
|
|
|
04/04/08, 11:46 AM
|
#289
|
|
Von Kaiser
|
@Gngsk... thank you, that was very helpful, just what i was looking for
|
|
|
|
|
|
04/04/08, 11:53 AM
|
#290
|
|
Von Kaiser
Undead Warlock
Defias Brotherhood (EU)
|
Currently I use this macro for Heroism:
#showtooltip
/p Heroism UP!
/y CAN'T LET YOU DO THAT, STARFOX!
/cast Heroism
Now, if I'm stunned and I press this button in the arenas, the /y will still come up, but the skill itself won't be used.
I know that macros can't check for buffs/debuffs present, but is there any other way to go around and solve this issue? I'd like to keep the /yell part :3
|
|
|
|
|
04/04/08, 1:19 PM
|
#291
|
|
Piston Honda
|
Originally Posted by Gretten
Currently I use this macro for Heroism:
#showtooltip
/p Heroism UP!
/y CAN'T LET YOU DO THAT, STARFOX!
/cast Heroism
Now, if I'm stunned and I press this button in the arenas, the /y will still come up, but the skill itself won't be used.
I know that macros can't check for buffs/debuffs present, but is there any other way to go around and solve this issue? I'd like to keep the /yell part :3
|
I haven't confirmed if it works in 2.4, but AfterCast WoWInterface Downloads : Iriel's Castle : AfterCast should handle what you're looking for.
|
|
|
|
|
|
04/05/08, 3:02 PM
|
#292
|
|
Glass Joe
Undead Priest
Khaz'goroth (EU)
|
Hi guys,
i want a macro for my priest, and can´t find a answer for my problem
i want to use a trinket in combination whit PoM
so i tried this:
#showtooltip Prayer of Mending(Rank 1)
/use Essence of the Martyr
/cast [target=player] Prayer of Mending(Rank 1)
ok, but u all know this gay sound from the message --> "Item is not ready yet"
can i disable this sound whit a command?
or can u give me other tipps for this macro?
thanks for your help ._.
Tisy
|
|
|
|
|
|
04/05/08, 3:25 PM
|
#293
|
|
postcount++
Malan
Tauren Shaman
No WoW Account
|
Originally Posted by Gretten
Currently I use this macro for Heroism:
Now, if I'm stunned and I press this button in the arenas, the /y will still come up, but the skill itself won't be used.
I know that macros can't check for buffs/debuffs present, but is there any other way to go around and solve this issue? I'd like to keep the /yell part :3
|
This won't solve the stunned issue, but I use this macro for bloodlust -
#showtooltip Bloodlust
/stopmacro [nocombat]
/script local u,m = IsUsableSpell("Bloodlust") if u and not m and GetNumPartyMembers() > 0 then SendChatMessage(" >>> BLOODLUST! <<<","PARTY") end
/cast Bloodlust
END
This at least makes it so that if the ability is on cooldown that it won't spam chat if you start hitting the keybind to early, and it will prevent you accidently triggering bloodlust if you aren't in combat.
|
Shitting up every single thread on EJ since '06
|
|
|
|
04/06/08, 4:26 AM
|
#294
|
|
I'm the girl that the ESRB warned you about.
Blood Elf Priest
Mal'Ganis
|
Okay, I'm finally annoyed enough with my dailies macro to seek help.
/use Tears of the Goddess
/use Skyguard Bombs
/use Skyguard Blasting Charges
/use Booterang
/use Arcane Charges
/use Multiphase Spectrographic Goggles
Works perfectly fine and takes care of 5 but of the 7 quests I'd like to macro into this one combine. It uses whatever I have in my bag and any errors I see (usually that I don't have the goggles equipped) don't restrict the use of the others. I'd like to be able to add in the wrangling rope and flaming oil but they conflict with (respectively) the Skyguard Blasting Charges (maybe bombs, can never keep those two straight) and Arcane Charges.
If I just key them in as /use (rope name) or /use flaming oil- regardless of placement in the order, they make the other action in that area fail. I'd like to add in a modifier key (alt please) to just those two items that would use whichever of them I had in my bags. I'm not sure of the exact wording though.
|
Originally Posted by Disquette
How fortuitous. Usually we have to leave this thread to feed.
|
|
|
|
|
04/06/08, 6:07 AM
|
#295
|
|
Von Kaiser
Troll Priest
Mannoroth (EU)
|

Originally Posted by Bekah
Okay, I'm finally annoyed enough with my dailies macro to seek help.
/use Tears of the Goddess
/use Skyguard Bombs
/use Skyguard Blasting Charges
/use Booterang
/use Arcane Charges
/use Multiphase Spectrographic Goggles
Works perfectly fine and takes care of 5 but of the 7 quests I'd like to macro into this one combine. It uses whatever I have in my bag and any errors I see (usually that I don't have the goggles equipped) don't restrict the use of the others. I'd like to be able to add in the wrangling rope and flaming oil but they conflict with (respectively) the Skyguard Blasting Charges (maybe bombs, can never keep those two straight) and Arcane Charges.
If I just key them in as /use (rope name) or /use flaming oil- regardless of placement in the order, they make the other action in that area fail. I'd like to add in a modifier key (alt please) to just those two items that would use whichever of them I had in my bags. I'm not sure of the exact wording though.
|
i would recommend to use a nice little addon for your problem:
IHML (I Have Macros Lol)
it uses 1 macro slot and therefore 1 action bar slot for many /use items 
|
|
|
|
|
|
04/06/08, 6:21 PM
|
#296
|
|
Piston Honda
Tauren Hunter
Jaedenar (EU)
|
Originally Posted by Bekah
I'd like to add in a modifier key (alt please) to just those two items that would use whichever of them I had in my bags. I'm not sure of the exact wording though.
|
/use [mod:alt] Wrangling Rope
|
|
|
|
|
|
04/07/08, 6:10 AM
|
#297
|
|
Glass Joe
Dwarf Priest
Sunstrider (EU)
|
I would like to make a macro where i ress a player and i whisper the player and tell either /P or /ra that im ressing X player.
How do i do that?
Im a priest btw incase u need that 
|
|
|
|
|
|
04/07/08, 11:05 AM
|
#298
|
|
Glass Joe
|

Originally Posted by Bekah
Okay, I'm finally annoyed enough with my dailies macro to seek help.
/use Tears of the Goddess
/use Skyguard Bombs
/use Skyguard Blasting Charges
/use Booterang
/use Arcane Charges
/use Multiphase Spectrographic Goggles
Works perfectly fine and takes care of 5 but of the 7 quests I'd like to macro into this one combine. It uses whatever I have in my bag and any errors I see (usually that I don't have the goggles equipped) don't restrict the use of the others. I'd like to be able to add in the wrangling rope and flaming oil but they conflict with (respectively) the Skyguard Blasting Charges (maybe bombs, can never keep those two straight) and Arcane Charges.
If I just key them in as /use (rope name) or /use flaming oil- regardless of placement in the order, they make the other action in that area fail. I'd like to add in a modifier key (alt please) to just those two items that would use whichever of them I had in my bags. I'm not sure of the exact wording though.
|
Agree, get ihml!
Otherwise change these lines:
/use [mounted] Skyguard Bombs
/use [mounted] Skyguard Blasting Charges
|
|
|
|
|
|
04/07/08, 12:52 PM
|
#299
|
|
Needs to think of a better user title.
Blood Elf Paladin
Mal'Ganis
|
Originally Posted by Wollabille
I would like to make a macro where i ress a player and i whisper the player and tell either /P or /ra that im ressing X player.
How do i do that?
Im a priest btw incase u need that 
|
#showtooltip Resurrection
/script SendChatMessage("<whisper message>", "WHISPER",nil, UnitName("target"));
/ra Resurrecting %t.
/cast Resurrection
The player you're resurrecting needs to be your target in order for the chat messages to work properly. (read: if they released it will say "Resurrecting <no target>.")
|
Originally Posted by DeeNogger
Every time I bite into an oatmeal raisin cookie mistaken for a chocolate-chip an angle loses its wings. Fucking trani's of the cookie world!
|
Originally Posted by castille
Squirrel sex. Get your nut and go home.
|
|
|
|
|
04/08/08, 3:13 AM
|
#300
|
|
Average Joe
|
I'm not sure this is possible, but I'm trying to replace the few functions that I still use the old warlock Addon, Necrosis for. The only thing remaining is a text message when summoning a player asking people to click.
What I would like is a single macro that can determine if I am in a raid or just a 5 man group that will send a "Please help summon <player name>." to the group if I am in just a 5 man, but to the entire raid if I am in a raid.
|
|
|
|
|
|
|