Bug fix? /aa act ${variable}
Posted: Sat Apr 18, 2009 4:35 pm
I noticed that /aa act ${variable} doesn't work. That is, typing this works:
But this does not:
This is because the /aa command doesn't parse its parameters. I couldn't see any reason that it shouldn't, so this can be fixed in the code by enabling parsing on the command. Change MQ2CommandAPI.cpp, line 552...
From:
To:
Code: Select all
/aa act EntrapCode: Select all
/declare spellName string local Entrap
/aa act ${spellName}From:
Code: Select all
{"/aa", AltAbility,0,1},Code: Select all
{"/aa", AltAbility,1,1},