You are not logged in.
I need help..
i know it has been posted somewhere before, but i cant seem to find it back.
so here it goes, asking for it again.
a macro that, when you start to cast, lets say, frostbolt, a trinket, in my case the ToEP, automatically activates if its not on a cooldown.
anybody know how to make such a macro?
thanks alot in advance.
Offline
is this even possible?
Offline
I have seen this macro for activating both of your trinkets and then casting frostbolt. Item 13 or 14 refers to trinket slot 1 and 2 so you only need to include one of the lines in your macro - the one that points to the trinket slot where you have equipped the ToEP in.
/script if GetInventoryItemCooldown("player", 13) == 0 then UseInventoryItem(13); SpellStopCasting(); end
/script if GetInventoryItemCooldown("player", 14) == 0 then UseInventoryItem(14); SpellStopCasting(); end
/cast Frostbolt(Rank 10)
I can't test it myself, but that should be what you want.
Last edited by xzar (2006-01-14 04:25:50)
Offline
hmm, I'll try when I log in again
Offline
thanks alot Xzar, ill test it as soon as i get time to play
[edit] Tested and it worked, thanks alot Xzar, makes my ToEP actually worth the dkp i spent on it. (i forgot it too often )
Last edited by Vulshok (2006-01-16 11:44:14)
Offline
i'd like a macro that charges the enemy, hits hamstring, then change to berserker stance and does bloodrage and then MS, after that berserker rage if the opponent is not a rogue, fear user or a paladin. then it would do whirlwind, and to top it all of use recklessness and /moon, /rofl, /pwndnuub at the same time.
it would really help kthx
Offline
ahh!! noob!! golrock, you should know that mages cant charge! (or any other ability you just discribed)
now stop harrasing us, we mages have a tough enough life as it is. :'(
Offline
just to renew it
Offline
actually there are some mods out there that do that but they are called bots, and are hunter /rogue only (go figure -)
Offline
chaelot wrote:
Can anyone make a macro that goes out and buys a bottle of whisky, a pizza and a six-pack of cold beer for me while i am playing ?
Chae
you want one of those slaves from africa. i can set you up with my dealer and im sure they can find a model to suit your specifications.
Offline
#show Talisman of Ephemeral Power
/use 13/14
/stopcasting
/cast Frostbolt
This will show the cooldown on the talisman and cast frostbolt, when the trinket is on cooldown it wont be popped(cause it cant).
NOTE: 13/14 is the two trinket slots, 13 is the upper slot and 14 is the lower slot. change to: /use 13 or /use 14 wichever match the slot you have ToEP in.
Offline
Random mount:
/userandom
Reins of the Swift Frostsaber
Reins of the Swift Mistsaber
Reins of the Swift Stormsaber
Black War Steed Bridle
etc...
Offline
denatus wrote:
#show Talisman of Ephemeral Power
/use 13/14
/stopcasting
/cast Frostbolt
This will show the cooldown on the talisman and cast frostbolt, when the trinket is on cooldown it wont be popped(cause it cant).
NOTE: 13/14 is the two trinket slots, 13 is the upper slot and 14 is the lower slot. change to: /use 13 or /use 14 wichever match the slot you have ToEP in.
If I have TOEP in 13 and ZHC in 14, will it use the one that is ready? Or only TOEp?
Offline
sweter wrote:
denatus wrote:
#show Talisman of Ephemeral Power
/use 13/14
/stopcasting
/cast Frostbolt
This will show the cooldown on the talisman and cast frostbolt, when the trinket is on cooldown it wont be popped(cause it cant).
NOTE: 13/14 is the two trinket slots, 13 is the upper slot and 14 is the lower slot. change to: /use 13 or /use 14 wichever match the slot you have ToEP in.If I have TOEP in 13 and ZHC in 14, will it use the one that is ready? Or only TOEp?
It is no longer possible to make conditional logic on cooldowns in macros, so no - it isn't possible to make a single macro that either activates trinket 1 or 2 based on which ever is not on cooldown.
Offline
Actually, it is.
/use 13
/stopcasting
/use 14
/stopcasting
/cast Fireball
And there you go. You'll activate the upper trinket first, if it is on cooldown, you'll pop the lower trinket. Easy as that.
Offline
Have you tested it?
From what I've read on the forums, if a spellcast fails during a macro then the entire macro fails. If it does work, then I guess activating a trinket doesn't qualify as a "spell cast" and then I stand corrected
EDIT:
Ah wait, I'm being silly here. Actions that does not have an effect on the GCD will of course work with this.
Last edited by xzar (2006-12-23 18:14:33)
Offline
Yes, i've been using it since Sweter posted the Macro topic and it works.
Offline