Colez 0 Report post Posted June 1, 2017 Hi i have looked around and i cant seem to find any with what i want. does anyone know how i can make 3 macros. 1. A spammable ice block macro so i dont auto cancel on second press 2. A block macro that cancels the aura on one press (instantly if its even possible), so like i press the bind and the instant i press it blocks and unblocks in 1 press by removing the ice block buff. 3. a shift modifier block macro so on bind R say it will do what i said in number 1. and on Shift r it will do what i want in number 2. Hope that makes sense and any thanks if u can help. 0 Share this post Link to post Share on other sites
dms 0 Report post Posted June 4, 2017 Dont think its possible to both cast and cancel in 1 press, always gonna need 2 key presses to do that. Here's my spammable ice block macro (requires supermacro) /script SpellStopCasting() /script if not buffed("Ice Block", 'player') then cast("Ice Block") end 0 Share this post Link to post Share on other sites
WobLight 5 Report post Posted June 5, 2017 /run local i,a,sn sn="Ice Block" i=0 while a~=sn do i=i+1 a=GetSpellName(i,"spell")end if ({GetSpellCooldown(i,"spell")})[3]~=0 == not IsShiftKeyDown() then CastSpellByName(sn)end @ColezYou can try this one, it was designed for stealth but should work just fine. 0 Share this post Link to post Share on other sites