Oakenlix 79 Report post Posted January 6, 2017 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. 0 Share this post Link to post Share on other sites
damagepy 5 Report post Posted January 6, 2017 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) 0 Share this post Link to post Share on other sites
suhail1200 3 Report post Posted January 8, 2017 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 0 Share this post Link to post Share on other sites