Elitist Jerks
Register
Blogs
Forums


Go Back   Elitist Jerks » Public Discussion

Reply
 
LinkBack Thread Tools
Old 03/04/08, 3:16 PM   #226
Ajuga
Piston Honda
 
Ajuga's Avatar
 
Undead Mage
 
Jaedenar (EU)
Jaitee, it's not possible to do in a macro. However there are addons (that I don't remember the names of) who can send a chat message on a succesful scatter shot/freezing trap/sheep etc.

Offline
Reply With Quote
Old 03/04/08, 3:27 PM   #227
Marroc
Now you're thinking with portals!
 
Marroc's Avatar
 
Undead Rogue
 
Twisting Nether
Originally Posted by Vidofnir View Post
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.
And even shorter:

#showtooltip
/cast [help,mod]Binding Heal;[help]Flash Heal(Rank 8);[help,target=targettarget,mod]Binding Heal;[help,target=targettarget]Flash Heal(Rank 8);[target=player,mod]Flash Heal;Flash Heal
/script UIErrorsFrame:Clear()
Three lines total. 225 characters total.

[e] Forgot to include the showtooltip
[e2] You might not even need the UIErrorsFrame:Clear() in there, the macro should only toss an error when it's supposed to (ie. you're targeting a hostile mob who has a hostile mob targeted, etc).

Last edited by Marroc : 03/04/08 at 3:32 PM.

Offline
Reply With Quote
Old 03/04/08, 3:55 PM   #228
Nocenhatred
Glass Joe
 
Blood Elf Paladin
 
Duskwood
I had been using this macro successfully:

/cast divine favor
/cast [target=mouseover,exists,help] holy light; [target=target,exists,help] holy light

Suddenly I'm raiding in SSC and trying to get this macro to work, but all that I can get it to do is cast the Divine Favor. It will not continue to cast the heal, giving me the error: That spell is not ready. Even if the macro does cast the divine favor, it isn't proceeding further, but stopping. I would prefer this macro to use Divine Favor if it's up, and cast the heal. If it's not up, to just cast the heal.

Offline
Reply With Quote
Old 03/04/08, 4:22 PM   #229
Marroc
Now you're thinking with portals!
 
Marroc's Avatar
 
Undead Rogue
 
Twisting Nether
Originally Posted by Nocenhatred View Post
I had been using this macro successfully:

/cast divine favor
/cast [target=mouseover,exists,help] holy light; [target=target,exists,help] holy light

Suddenly I'm raiding in SSC and trying to get this macro to work, but all that I can get it to do is cast the Divine Favor. It will not continue to cast the heal, giving me the error: That spell is not ready. Even if the macro does cast the divine favor, it isn't proceeding further, but stopping. I would prefer this macro to use Divine Favor if it's up, and cast the heal. If it's not up, to just cast the heal.
[e] sorry, ignore that... Didn't realize divine favor doesn't trigger the GCD. Not sure what's going on.

It should cast divine favor and then cast holy light on your mouseover target. The only thing I can think of trying would be:

/cast divine favor
/cast [target=target,exists,help] holy light; [target=mouseover,exists,help] holy light

Last edited by Marroc : 03/04/08 at 4:28 PM.

Offline
Reply With Quote
Old 03/05/08, 7:33 PM   #230
GwarFear
Glass Joe
 
Undead Rogue
 
Outland (EU)
Been looking around inhere - but cant find what Im looking for...

I need a macro that allows me to use:
my trinket
adrenaline rush
Blade flurry
Drums of battle

Have tryed with this:
/cast Adrenaline Rush
/stopcasting
/cast Bloodlust Blooch
/stopcasting
/cast Blade Flurry
/stopcasting
/cast Drums of Battle

Really need some help cause I suck @ macros : ))

Offline
Reply With Quote
Old 03/06/08, 4:44 PM   #231
Marroc
Now you're thinking with portals!
 
Marroc's Avatar
 
Undead Rogue
 
Twisting Nether
Originally Posted by GwarFear View Post
Been looking around inhere - but cant find what Im looking for...

I need a macro that allows me to use:
my trinket
adrenaline rush
Blade flurry
Drums of battle

Have tryed with this:
/cast Adrenaline Rush
/stopcasting
/cast Bloodlust Blooch
/stopcasting
/cast Blade Flurry
/stopcasting
/cast Drums of Battle

Really need some help cause I suck @ macros : ))
Not possible, BF and AR both trigger the GCD.

The closest you can get is using a /castsequence and making it a multiple click macro.

Offline
Reply With Quote
Old 03/07/08, 12:06 AM   #232
Bekah
Has Opinions.
 
Bekah's Avatar
 
Goblin Hunter
 
Mal'Ganis
And you don't need the /stopcasting anymore either- as an example of my alt mages all-in-one macro:
/use 13
/use 14
/cast Combustion
/cast Fireball

Every cast flips through both trinkets and combustion and uses whatever is up before casting a fireball. The only critical part is that only one of the actions can invoke the GCD. =)

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 03/07/08, 3:21 AM   #233
Fulnir
Von Kaiser
 
Fulnir's Avatar
 
Blood Elf Priest
 
Mazrigos (EU)
Hello, I'm asking if the following option is available somehow in a macro:
I want a macro which activates all my conjured Protection potions (one button for all), but i'd like to make the icon dynamically depending on what I got in my inventory. For instance if I loot a Major frost protection potion I want the icon to change to that, same with fire, nature, etc.
If I have no prot potions on me I'd like it to show a default icon, so I don't have to look at a question mark.
Is this somehow possible?
This is my current one, but it's only temporary and doesn't change icon according to what I have in inventory (intended):
#show item:22826
/use item:32840
/use item:32844
/use item:32845
/use item:32846
/use item:32847

thank you

Offline
Reply With Quote
Old 03/07/08, 3:46 AM   #234
Marroc
Now you're thinking with portals!
 
Marroc's Avatar
 
Undead Rogue
 
Twisting Nether
Originally Posted by Fulnir View Post
Hello, I'm asking if the following option is available somehow in a macro:
I want a macro which activates all my conjured Protection potions (one button for all), but i'd like to make the icon dynamically depending on what I got in my inventory. For instance if I loot a Major frost protection potion I want the icon to change to that, same with fire, nature, etc.
If I have no prot potions on me I'd like it to show a default icon, so I don't have to look at a question mark.
Is this somehow possible?
This is my current one, but it's only temporary and doesn't change icon according to what I have in inventory (intended):
#show item:22826
/use item:32840
/use item:32844
/use item:32845
/use item:32846
/use item:32847

thank you
Try not giving it an item name, but just using "#showtooltip" instead.

Offline
Reply With Quote
Old 03/07/08, 6:54 AM   #235
Zaloog
Glass Joe
 
Blood Elf Paladin
 
Laughing Skull
This may be difficult to answer as I have been looking around and I cannot seem to find a reason as to why this is happening. The problem I'm having is in regards to a mouseover Blessing of Freedom macro I have:

/cast [modifier:alt,target=player] Blessing of Freedom; [target=mouseover,exists,help] Blessing of Freedom; [target=target,help] Blessing of Freedom; [target=player] Blessing of Freedom

This does a few things. First, you can use a modifier key to cast it on yourself. Second, it works with mouseovers. The last 2 bits just make it function normally with a targeted ally or when you have yourself targeted.

The issue I'm running into is when I bind that macro to any mouse button it will not use Blessing of Freedom when I mouse over someone in my party frame. IE: If I move my mouse over to say the default blizzard unit frames and I hit the macro on my mouse the spell will not go off. Otherwise it works just fine, if I target my teammate it works, if I target myself it works, if I mouse over the players character it works fine, It just work work when I mouseover my unit frames, namely grid.

Now at first I thought it had something to do with how my macro was written, that is until I moved the macro to a bind on my keyboard. The macro works just fine, I mouse over someone on my unit frames and hit the keyboard macro Blessing of freedom goes off.

Any ideas on how to fix this?

Offline
Reply With Quote
Old 03/11/08, 1:13 PM   #236
Thanahtos
Von Kaiser
 
Thanahtos's Avatar
 
Undead Warlock
 
Stormrage
Just a quick question, is there any way for this macro:

#showtooltip
/use [mod:shift] Brilliant Wizard Oil; Superior Wizard Oil
/use 15
to auto accept the little "Do you want to replace X with X" box?


Thanks in advance.

Offline
Reply With Quote
Old 03/12/08, 12:18 PM   #237
Seidule
Von Kaiser
 
Draenei Shaman
 
Korgath
A bit of macro help..

Hello!

I am an enhancement shaman using a macro consisting of a castsequence to use my Stormstrike ability and keep two totems up for my group members:
/startattack
/castsequence reset=12 Windfury Totem, Grace of Air Totem, Stormstrike
I would like to improve this macro by having it use Drums of Battle and Haste Potion when the cooldowns are up. Any people good with the macro interface able to assist?

Thanks,
Andu

Offline
Reply With Quote
Old 03/12/08, 12:40 PM   #238
Chebyshev
Glass Joe
 
Undead Priest
 
Emerald Dream
Won't that result in you dropping your totems every 12 seconds prior to Stormstrike, wasting a lot of mana?

Offline
Reply With Quote
Old 03/12/08, 12:48 PM   #239
Seidule
Von Kaiser
 
Draenei Shaman
 
Korgath
Originally Posted by Chebyshev View Post
Won't that result in you dropping your totems every 12 seconds prior to Stormstrike, wasting a lot of mana?
It wastes a lot of mana, but provides a lot of benefit to group members -- and I have JoW up, so it's not a very big deal..the primary goal is to be a group buffer, so I'd like to have Drums be up every 2 minutes on the dot, if possible.

Offline
Reply With Quote
Old 03/12/08, 2:39 PM   #240
ishellbulleti
Glass Joe
 
Troll Mage
 
Twisting Nether
/startattack
/run UIErrorsFrame:Hide();
/use Drums of Battle
/use Haste Potion
/run UIErrorsFrame:Show();
/castsequence reset=12 Windfury Totem, Grace of Air Totem, Stormstrike
the /runs are to hide the spam from potion being on cooldown
Does drums of battle have a cast time? if it does then this won't work you'll need to remove the /use drums of battle line

Also http://elitistjerks.com/f32/t15779-macro_questions/ a very similar thread already exists

Offline
Reply With Quote
Old 03/12/08, 10:36 PM   #241
Baerbel
Glass Joe
 
Undead Rogue
 
Mannoroth (EU)
Id like to macro my drums of battle to
a) announce it in party chat that i just used them
b) make it so that if i click the button 2 or 3 times because i cant use the drums when on gcd that it doesnt spam the chat
c) doesnt use the drums and announcement if there is already a drums of battle buff active

Would such a macro be possible?

Offline
Reply With Quote
Old 03/14/08, 5:18 AM   #242
jkr266
Glass Joe
 
Murloc Rogue
 
Archimonde
Is it still possible to make a macro that allows you to apply a weapon to the mainhand with a left click and the right hand with a right click?

I've tried this, and nothing happens when i click the macro. No lua error or anything.

#showtooltip Deadly Poison VII
/use [nomodiier] Deadly Poison VII
/use [button:1] 16; [button:2] 17

I also tried copying a more intricate macro from wowwiki that had you using ctrl/shift and other modifiers to choose the type of poison. It failed to work as well.

Also tried taking out the second line completly and makign it

#showtooltip Deadly Poison VII
/use Deadly Poison VII[button:1] 16; [button:2] 17

Offline
Reply With Quote
Old 03/16/08, 12:28 AM   #243
Vodrin
Don Flamenco
 
Tauren Druid
 
Magtheridon (EU)
#showtooltip Deadly Poison VII
/use Deadly Poison VII
/use [button:1] 16; [button:2] 17

works fine.

#showtooltip
/use [nomodifier] Deadly Poison VII; [modifier:shift] Crippling Poison II; [modifier:alt] Wound Poison V; [modifier:ctrl] Instant Poison VII
/use [button:1] 16; [button:2] 17

also works if you wish to compact them onto the one button.

Offline
Reply With Quote
Old 03/16/08, 5:00 PM   #244
kale27
Glass Joe
 
Human Paladin
 
Nordrassil (EU)
I was wondering if anyone could help me with this.
What i´m trying to do is make some things on screen dissapear when i presh a button, got it working for my chatframe, but now i would like some more room on the other side of my screen.

The frames on the right side contain some eePanels, my minimap and 3 actionbars.
This frame is basicly my Menu.
I think i can make it so it only contains 2 Actionbars from Bartender3 (Micromenu and Bar9)
I got a script to hide my minimap, will parent and anchor it to eepanels so it will hide them also, now only thing i need to do is hide the other 2 bars within the 255 characters limit of a macro.

/run if MinimapCluster:IsShown() then MinimapCluster:Hide() else MinimapCluster:Show() end
Above Script is 90 characters and hides the minimap, can anyone help me out on the part for bartender3? And is there a possibility of shortening these two down to fit in a macro?
I'm currently at work and this will bug me whole night if i don't find out how to do this. And even more because i can't try it

Any help would be mucho appreciated.

Edit: found this: WoWInterface Downloads : Beta-version Interfaces : Tooggle and i think it will get me what i need.

Last edited by kale27 : 03/16/08 at 8:03 PM. Reason: Found a sollution

Offline
Reply With Quote
Old 03/16/08, 7:07 PM   #245
Sinzar
Von Kaiser
 
Sinzar's Avatar
 
Human Death Knight
 
Greymane
Originally Posted by Baerbel View Post
Id like to macro my drums of battle to
a) announce it in party chat that i just used them
b) make it so that if i click the button 2 or 3 times because i cant use the drums when on gcd that it doesnt spam the chat
c) doesnt use the drums and announcement if there is already a drums of battle buff active

Would such a macro be possible?
A + B is possible if you create an addon to throttle the message, but you don't have enough room to write the code in a single 255 character limited macro.

C is not possible I'm afraid (at least not the use item part)

EDIT: Here's the code to not spam chat if you multi click:

local frame = CreateFrame("Frame")
local timeleft = 0

function BaerbelThrottledMsg(msg)
	if (timeleft == 0) then
		timeleft = 2
		frame:SetScript("OnUpdate", function(_, elapsed)
			timeleft = timeleft - elapsed 	
			if (timeleft <= 0) then
				frame:SetScript("OnUpdate",nil)
				timeleft = 0
			end
		end)
		if GetNumPartyMembers() > 0 then
			SendChatMessage(msg,"PARTY")
		end
	end
end
Add the above into a lua file, give it a TOC and load it as an addon, then in game make the following macro:

#showtooltip
/run BaerbelThrottledMsg("Using Drums of Battle")
/use Drums of Battle
That will only send the message to chat at most once per 2 seconds (can change the "timeleft = 2" part to whatever you want).

Last edited by Sinzar : 03/16/08 at 7:21 PM.

Offline
Reply With Quote
Old 03/17/08, 10:49 AM   #246
Herrera
Piston Honda
 
Herrera's Avatar
 
Tauren Druid
 
Lightning's Blade (EU)
Hi, I'm wondering if the following is possible or does it fall under the long time fixed "AI cannot decide for you which spell to cast" category. I want to cast different ranks of a spell depending on a buff on me. To be precise I want to cast Earth Shock (Rank 1) if no Shamanistic Focus is present on me, if it is, cast highest rank Earth Shock. I know it's possible to switch ranks with modifier, but I'm wondering if it can be macroed without it.

Totem of the Crusader
Tools: Earth Totem
Increases mounted speed of all party members by 20% while in range of the totem.

Offline
Reply With Quote
Old 03/17/08, 10:57 AM   #247
Nadiar
Von Kaiser
 
Tauren Druid
 
Blackrock
Originally Posted by Herrera View Post
Hi, I'm wondering if the following is possible or does it fall under the long time fixed "AI cannot decide for you which spell to cast" category. I want to cast different ranks of a spell depending on a buff on me. To be precise I want to cast Earth Shock (Rank 1) if no Shamanistic Focus is present on me, if it is, cast highest rank Earth Shock. I know it's possible to switch ranks with modifier, but I'm wondering if it can be macroed without it.
No, macro's cannot decide which rank to cast for you.

Offline
Reply With Quote
Old 03/17/08, 11:57 AM   #248
Gere
Von Kaiser
 
Blood Elf Paladin
 
Bloodhoof
Drums do not have a cast time or trigger the GCD so 1 press will use both the haste pot and the drums, the rest will require spamming of the button of course.

I do have a question though, what is the difference between using /script UIErrorsFrame:Hide(); / Show(); and using /script UIErrorsFrame:Clear();?

I use Clear(); at the end of my macros and I also do not get the UI Errors.

Thanks

Offline
Reply With Quote
Old 03/17/08, 1:06 PM   #249
Grai
Von Kaiser
 
Undead Mage
 
Maelstrom
Originally Posted by Gere View Post
Drums do not have a cast time or trigger the GCD so 1 press will use both the haste pot and the drums, the rest will require spamming of the button of course.

Thanks
Yes, Drums do trigger GCD. Absolutely sure.

Offline
Reply With Quote
Old 03/17/08, 6:59 PM   #250
Jemsky
Von Kaiser
 
Jemsky's Avatar
 
Night Elf Death Knight
 
Bronzebeard (EU)
I'd appreciate some advice on this macro and if it is rubbish, please let me know as well..Thank you in advance for any advice

I created a macro for the 3:2 rotation and I'm trying to find out where to insert the kill command and also was wondering if this macro is viable

/console Sound_EnableSFX 0
/cast !Auto shot
/cast Steady shot
/cast Steady Shot
/cast !Auto shot
/cast Steady shot
/console Sound_EnableSFX 1

"To bathe a cat takes brute force, perseverance, courage of conviction - and a cat.
The last ingredient is usually hardest to come by."

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