Forum Settings
       
Reply To Thread

Macro question - Icy Veins & FrostboltFollow

#1 Jan 26 2008 at 5:31 AM Rating: Decent
*
91 posts
Hi there,

Being a complete twit at macros I therefore decided to ask here.

I would like a macro that will activate Icy Veins whenever it is ready, and then cast a frost bolt. I just have absolutely no idea of how to do it.

Help would be much appreciated!
#2 Jan 26 2008 at 6:22 AM Rating: Decent
***
2,826 posts
/castsequence icy veins, frostbolt

For the frostbolt you should be able to shift-click the highest rank from your spell book.

If you spam this button it will activate ivy veins whenever it is ready, otherwise it will shoot a frostbolt
#3 Jan 26 2008 at 6:31 AM Rating: Decent
*
91 posts
Doesn't seem to work I'm afraid.

It does activate Icy Veins and then on second click allow me to cast one frost bolt. But after that, I get the message "Spell is not ready yet"
#4 Jan 26 2008 at 6:41 AM Rating: Decent
*
91 posts
Just had this one sent to me. It works fine.

/cast icy veins
/cast Frostbolt


**Edit** I still get the "Spell is not ready yet" message everytime I cast, but the frostbolt is fired none the less.

Now to figure out if that error message can be removed.

Edited, Jan 26th 2008 3:43pm by Sweeperdk
#5 Jan 26 2008 at 7:52 AM Rating: Excellent
Citizen's Arrest!
******
29,527 posts
Quote:
#showtooltip Fireball(Rank 13)
/script UIErrorsFrame:Hide()
/cast Combustion
/use 13
/cast Icy Veins
/cast fireball(Rank 13)
/script UIErrorsFrame:Clear()
/script UIErrorsFrame:Show()


That's my macro. Change Spell Names as you need.
#6 Jan 26 2008 at 7:55 AM Rating: Decent
Try this,

Figure out the CD on Icy Veins, then figure out how many Frost bolts you can cast before it Refreshes.

Then use a macro somewhat like this

/castsequence reset=4 icy veins, frost bolt, frost bolt, frost bolt,(icy veins CD done here) icy veins, frost bolt, frost bolt, frost bolt

Make sure your cast time is shorter than your reset so that it does not reset the macro to soon.

Now there is probably a fancy way to do it that I do not know yet as i am fairly new to macros but i think this will work.
#7 Jan 26 2008 at 8:35 AM Rating: Decent
*
91 posts
The One and Only Poldaran wrote:
Quote:
#showtooltip Fireball(Rank 13)
/script UIErrorsFrame:Hide()
/cast Combustion
/use 13
/cast Icy Veins
/cast fireball(Rank 13)
/script UIErrorsFrame:Clear()
/script UIErrorsFrame:Show()


That's my macro. Change Spell Names as you need.


Thanks a million! Works perfectly
#8 Jan 26 2008 at 12:41 PM Rating: Good
*
163 posts
#showtooltip Frostbolt(Rank 13)
/script UIErrorsFrame:Hide()
/use 13
/use 14
/cast Icy Veins
/cast frostbolt(Rank 13)
/script UIErrorsFrame:Clear()
/script UIErrorsFrame:Show()


Thanks Poldaran!
Thanks Azlidd too, I'll be looking more into this later.


Edited, Jan 26th 2008 3:42pm by JakeMcDee
#9 Jan 26 2008 at 12:48 PM Rating: Decent
*
91 posts
A little note,

I am not using the "rank (13)" or rank whatever. It works just fine without it, as long as I want to use highest rank possible.
#10 Jan 27 2008 at 7:24 PM Rating: Decent
**
390 posts
Sweeperdk the Tulip wrote:
A little note,

I am not using the "rank (13)" or rank whatever. It works just fine without it, as long as I want to use highest rank possible.



If that's the case use:

/cast fireball

if you don't specify a rank, it will use the highest.
#11 Jan 27 2008 at 9:08 PM Rating: Good
Citizen's Arrest!
******
29,527 posts
I shift-clicked mine out of the spellbook. Smiley: tongue
#12 Jan 28 2008 at 4:42 AM Rating: Decent
**
390 posts
The One and Only Poldaran wrote:
I shift-clicked mine out of the spellbook. Smiley: tongue


That works, but will include the rank. Fine if you are level 70, but if you are leveling you have to change the macro each time you level a spell. I only use the rank when down ranking a spell like Frost Nova, where rank 1 is as effective as max rank.
#13 Jan 28 2008 at 5:34 AM Rating: Decent
*
91 posts
Ambarius wrote:


That works, but will include the rank. Fine if you are level 70, but if you are leveling you have to change the macro each time you level a spell. I only use the rank when down ranking a spell like Frost Nova, where rank 1 is as effective as max rank.


Precisely, that was what I attempted to point out in my former post.

**On a second note, just got the piggie-morph ability today, w00t!**
#14 Jan 28 2008 at 7:27 AM Rating: Decent
**
390 posts
Sweeperdk the Tulip wrote:
[quote=Ambarius]


**On a second note, just got the piggie-morph ability today, w00t!**


Just about ready to get that myself :D

/[hijack]
#15 Jan 28 2008 at 8:41 AM Rating: Good
*
163 posts
Just read about a change to stop the sound you get when the trinkets are on cooldown, haven't tried it yet but here it is.

#showtooltip Frostbolt(Rank 13)
/script UIErrorsFrame:Hide()
/run SetCVar("Sound_EnableSFX","0")
/use 13
/use 14
/run SetCVar("Sound_EnableSFX","1")
/cast Icy Veins
/cast frostbolt(Rank 13)
/script UIErrorsFrame:Clear()
/script UIErrorsFrame:Show()
#16 Jan 28 2008 at 12:45 PM Rating: Good
*****
10,601 posts
Quote:

#showtooltip Frostbolt(Rank 13)
/script UIErrorsFrame:Hide()
/stuff
/script UIErrorsFrame:Clear()
/script UIErrorsFrame:Show()


The bold sections actually aren't needed at all. just use the clear command.
____________________________
01001001 00100000 01001100 01001001 01001011 01000101 00100000 01000011 01000001 01001011 01000101
You'll always be stupid, you'll just be stupid with more information in your brain
Forum FAQ
#17 Jan 29 2008 at 7:47 AM Rating: Decent
What about adding /stopcasting at the beginning of the macro to help chain casting? Using Quartz to show the current client/server lag prior to casting is also very helpful.
#18 Jan 29 2008 at 7:55 AM Rating: Good
Citizen's Arrest!
******
29,527 posts
SpiritusMundi the Venerable wrote:
What about adding /stopcasting at the beginning of the macro to help chain casting? Using Quartz to show the current client/server lag prior to casting is also very helpful.


You no longer need /stopcasting to do that. And without it, you can play a little dangerously and try starting the next a little before Quartz tells you.
#19 Jan 30 2008 at 10:41 AM Rating: Decent
*
78 posts
what does the line: "/use 13" mean?
#20 Jan 30 2008 at 9:35 PM Rating: Good
Citizen's Arrest!
******
29,527 posts
Krztina wrote:
what does the line: "/use 13" mean?


It uses the item in equipment slot 13. Which is one of the two trinket slots.
Reply To Thread

Colors Smileys Quote OriginalQuote Checked Help

 

Recent Visitors: 36 All times are in CST
Anonymous Guests (36)