Supermacro not working correctly?

Supermacro not working correctly?

by Argionelite » Sun Sep 20, 2015 12:51 pm

It's kind of weird, when I use the Isshiftkeydown thing, it doesn't work if i try to use Arcane Missiles.

Here's the macro:

/run local x = IsShiftKeyDown(); if x == nil then cast("Fire Blast(Rank 5)") else cast("Arcane Missiles(Rank 5)") end

Every time i shift use it, nothing happens. No notifications, no sign of the button being pressed, nothing.
Argionelite
Grunt
Grunt
 

Re: Supermacro not working correctly?

by LYQ » Sun Sep 20, 2015 5:31 pm

IsShiftKeyDown() will probably only return true or false, x == nil maybe not possible

/run if IsShiftKeyDown() then CastSpellByName("Arcane Missiles(Rank 5)") else CastSpellByName("Fire Blast(Rank 5)") end

check if the spells are spelled correctly
"Fire Blast(Rank 5)" and "Fire Blast (Rank 5)" are not the same
LYQ / Virose
Talentsaver (viewtopic.php?f=63&t=15429) - Totemtimers Enhanced (viewtopic.php?f=63&t=24422)
NostalriusAcceptTrade (viewtopic.php?f=63&t=31729)
User avatar
LYQ
Sergeant Major
Sergeant Major
 


Return to Addons & macros