General MQ2Melee - Downshit Question
Reply
MQ2Melee - Downshit Question
I picked up a new clicky (http://mqemulator.net/item.php?id=4299) the other day and can't seem to get it to work in my warrior's MQ2Melee .ini file.

Macro
More +
downshit1=/if (!${Me.Buff[Sheild of Flame].ID} && ${Spell[Sheild of Flame].Stacks} && ${Me.FreeBuffSlots}>=1) /casting 4299|arms -targetid|&{Me.ID}


Any ideas why this isn't working?

Thanks!

-Glacios
Sun Aug 28, 2011 7:35 am
at a glance it looks fine unless i overlooked something. Did you try breaking it down into individual components to see which part is breaking it? like:

/echo ${Me.Buff[Sheild of Flame].ID}
/echo ${Spell[Sheild of Flame].Stacks}
/echo ${Me.FreeBuffSlots}
/casting 4299|arms -targetid|&{Me.ID}
Sun Aug 28, 2011 4:02 pm
Project Lead
You have an ampersand in the /casting.
Macro
More +
/casting 4299|arms -targetid|&{Me.ID}

should be
Macro
More +
/casting 4299|arms -targetid|${Me.ID}

_________________
Sorvani
Sun Aug 28, 2011 10:20 pm
Senior Project Member
Haha, nice
Mon Aug 29, 2011 12:45 pm
Project Lead
Sometimes you just need a fresh set of eyes! Thanks guys... I'll try the fix when I get home tonight.

-Glacios
Wed Aug 31, 2011 5:20 am
General MQ2Melee - Downshit Question
Reply