I'm trying to run this macro, but i cant seem to get it working.
it's no adding the breaklines correctly. Any idea how wow would parse breaklines used in a macro? tried with \n & Environment.NewLine
Code:
/use Crystallized Fire
/use Crystallized Air
/use Crystallized Water
/use Crystallized Shadow
/use Crystallized Earth
/use Crystallized Life
/cast Swift Green Wind Rider
Code:
if(UseCrystallized)
{
string macro =
string.Format(
"RunMacroText(\"/use Crystallized Fire\n /use Crystallized Air\n /use Crystallized Water\n /use Crystallized Shadow\n /use Crystallized Earth\n /use Crystallized Life\n /cast {0}\")",
MountName);
Lua.DoString(macro);
}