Elitist Jerks
Register
Blogs
Forums


Go Back   Elitist Jerks » Public Discussion » Public Discussion

Reply
 
LinkBack Thread Tools
Old 04/02/08, 11:11 PM   #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, 3: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, 8: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, 10: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, 10:53 AM   #290
Gretten
Von Kaiser
 
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, 12: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, 2: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, 2:25 PM   #293
Malan
Mike Tyson
 
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, 3:26 AM   #294
Bekah
Soda Popinski
 
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.

Those of you who volunteered to be injected with praying mantis DNA, I've got some good news and some bad news.
Bad news is we're postponing those tests indefinitely. Good news is we've got a much better test for you: fighting an army of mantis men.
Pick up a rifle and follow the yellow line. You'll know when the test starts.

United States Offline
Reply With Quote
Old 04/06/08, 5:07 AM   #295
Hamsda
Piston Honda
 
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, 5: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, 5: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, 10: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, 11:52 AM   #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, 2: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 » 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 6:38 AM
Need help with a macro. Iol User Interface and AddOns 5 08/10/07 3:36 PM
Macro Fun KGBAgent185 Public Discussion 16 11/05/05 1:24 PM