Elitist Jerks
Register
Blogs
Forums


Go Back   Elitist Jerks » Public Discussion

Reply
 
LinkBack Thread Tools
Old 03/28/08, 4:57 PM   #276
Xaoc
Piston Honda
 
Tauren Druid
 
Eitrigg
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.

Online
Reply With Quote
Old 03/29/08, 12:06 PM   #277
Oprahwinfury
Von Kaiser
 
Oprahwinfury's Avatar
 
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.

Offline
Reply With Quote
Old 03/29/08, 12:19 PM   #278
Thanahtos
Von Kaiser
 
Thanahtos's Avatar
 
Undead Warlock
 
Stormrage
Originally Posted by Oprahwinfury View Post
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...

Offline
Reply With Quote
Old 03/29/08, 3:05 PM   #279
Oprahwinfury
Von Kaiser
 
Oprahwinfury's Avatar
 
Gnome Death Knight
 
Stormscale (EU)
Thanks alot, works perfectly!

Offline
Reply With Quote
Old 03/29/08, 5:51 PM   #280
Inemos
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.

Offline
Reply With Quote
Old 03/29/08, 6:02 PM   #281
Thanahtos
Von Kaiser
 
Thanahtos's Avatar
 
Undead Warlock
 
Stormrage
Originally Posted by Inemos View Post
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.

Offline
Reply With Quote
Old 03/29/08, 7:44 PM   #282
Sagus
Von Kaiser
 
Tauren Druid
 
Skullcrusher
Originally Posted by Inemos View Post
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.

Offline
Reply With Quote
Old 03/30/08, 5:31 PM   #283
Malan
Mind the gap.
 
Malan's Avatar
 
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.

United States Offline
Reply With Quote
Old 03/30/08, 6:49 PM   #284
Sinzar
Von Kaiser
 
Sinzar's Avatar
 
Human Death Knight
 
Greymane
/cast [target=focus,harm] Earth Shock
/stopmacro [target=focus,nohelp]
/assist [target=focus]

Offline
Reply With Quote
Old 04/02/08, 11:57 PM   #285
bimmian
Von Kaiser
 
Tauren Shaman
 
Darkspear
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.

Offline
Reply With Quote
Old 04/03/08, 12:11 AM   #286
Marroc
Now you're thinking with portals!
 
Marroc's Avatar
 
Undead Rogue
 
Twisting Nether
Originally Posted by bimmian View Post
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]

Offline
Reply With Quote
Old 04/04/08, 4:53 AM   #287
Gngsk
Glass Joe
 
Gnome Rogue
 
Runetotem
HunterPetSequence

Originally Posted by bimmian View Post
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.

Offline
Reply With Quote
Old 04/04/08, 9:04 AM   #288
Ajuga
Piston Honda
 
Ajuga's Avatar
 
Undead Mage
 
Jaedenar (EU)
^ Now this looks handy! And I guess you can use it for "normal" macros too if you're out of /macro slots.

Offline
Reply With Quote
Old 04/04/08, 11:46 AM   #289
bimmian
Von Kaiser
 
Tauren Shaman
 
Darkspear
@Gngsk... thank you, that was very helpful, just what i was looking for

Offline
Reply With Quote
Old 04/04/08, 11:53 AM   #290
Gretten
custom title
 
Gretten's Avatar
 
Human Warlock
 
Deathwing (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


Offline
Reply With Quote
Old 04/04/08, 1:19 PM   #291
Fendryl
Don Flamenco
 
Fendryl's Avatar
 
Orc Hunter
 
Malfurion
Originally Posted by Gretten View Post
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.

Offline
Reply With Quote
Old 04/05/08, 3:02 PM   #292
Tisy
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

Offline
Reply With Quote
Old 04/05/08, 3:25 PM   #293
Malan
Mind the gap.
 
Malan's Avatar
 
Malan
Tauren Shaman
 
No WoW Account
Originally Posted by Gretten View Post
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.

United States Offline
Reply With Quote
Old 04/06/08, 4:26 AM   #294
Bekah
Has Opinions.
 
Bekah's Avatar
 
Goblin Hunter
 
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.

BSG Reference Sheet

in EJBSG 10 -My instincts tell me that we cannot sacrifice democracy just because the president makes a bad decision.

United States Offline
Reply With Quote
Old 04/06/08, 6:07 AM   #295
Hamsda
Von Kaiser
 
Hamsda's Avatar
 
Goblin Priest
 
Mannoroth (EU)
Originally Posted by Bekah View Post
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

Germany Offline
Reply With Quote
Old 04/06/08, 6:21 PM   #296
Ajuga
Piston Honda
 
Ajuga's Avatar
 
Undead Mage
 
Jaedenar (EU)
Originally Posted by Bekah View Post
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

Offline
Reply With Quote
Old 04/07/08, 6:10 AM   #297
Wollabille
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

Offline
Reply With Quote
Old 04/07/08, 11:05 AM   #298
jerry247
Glass Joe
 
Orc Hunter
 
Mal'Ganis
Originally Posted by Bekah View Post
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

Offline
Reply With Quote
Old 04/07/08, 12:52 PM   #299
Sarutobi
Bald Bull
 
Sarutobi's Avatar
 
Toroko
Blood Elf Paladin
 
No WoW Account
Originally Posted by Wollabille View Post
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 View Post
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 View Post
Squirrel sex. Get your nut and go home.

Offline
Reply With Quote
Old 04/08/08, 3:13 AM   #300
Stosh
Von Kaiser
 
Stosh's Avatar
 
Gnome Warlock
 
Draenor
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.

Offline
Reply With Quote
Reply

Go Back   Elitist Jerks » Public Discussion

Thread Tools

Similar Threads
Thread Thread Starter Forum Replies Last Post
[Warlock] 5 v 5 Macro help Cronjob Player vs. Player 13 09/08/07 7:38 AM
Need help with a macro. Iol User Interface and AddOns 5 08/10/07 4:36 PM
Macro Fun KGBAgent185 Public Discussion 16 11/05/05 2:24 PM