Jump to content
Sign in to follow this  
senseiwu100

What class?

Recommended Posts

2 hours ago, Master Nurmi said:

Love it, how do you know iconname once you have the spell?

Could try doing my own things similar how you have done it, like have Cone of Cold with check for Clear Cast proc and then it would do stop casting Cone of Cold. :)

Theres an icon page on wowhead, you can also google it.

Share this post


Link to post
Share on other sites
7 hours ago, Master Nurmi said:

Love it, how do you know iconname once you have the spell?

I made a macro to list the debuff iconnames on the current target (and my buff names)

For my own buffs:

/script local i=0; while not (GetPlayerBuff(i)==-1) do DEFAULT_CHAT_FRAME:AddMessage(GetPlayerBuffTexture(GetPlayerBuff(i))); i=i+1; end

you check/find clearcasting's iconname when its up, and then u can write a function to check if its there. What do you want? having a button for cone of cold, but if you have clearcasting then cast something else instead (for example frostbolt)?

I dont know clearcast's iconname, but lets pretend its: Interface\\Icons\\Spell_Shadow_ManaBurn

/script f=0; for i=1,40 do if (strfind(GetPlayerBuffTexture(GetPlayerBuff(i)),"Spell_Shadow_ManaBurn")) then f=1; end; c=CastSpellByName; if (f==0) then c("Cone of Cold") else c("Frostbolt"); end;

I cant log in wow at the moment and I dont have clearcasting yet, but theorically it should work (or something similar)

Share this post


Link to post
Share on other sites

BM hunter with scatter shot is beast at leveling and u can pvp wth it too.

 

Well im going druid like before and make it r13 as before xD

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this  

×