I'm trying make a list of actions in <CodeChunk>, is this doable? I'm making a profile that gathers and crafts but it has to craft 7 items in 1 profile, that uses the same actions. I wanted to simplify it by making 1 set of it and then have the other recipes call the set when it's time to craft it.
This:
Into This: (doable?)
Currently, it just spams Great Strides over and over :-(
This:
Code:
<While Condition="CraftingManager.IsCrafting">
<CraftActionByName Name="Great Strides" />
<CraftActionByName Name="Steady Hand II" />
<CraftActionByName Name="Innovation" />
<CraftActionByName Name="Advanced Touch" />
<CraftActionByName Name="Great Strides" />
<CraftActionByName Name="Advanced Touch" />
<CraftActionByName Name="Careful Synthesis II" />
</While>
Into This: (doable?)
Code:
<![CDATA[
SpellData data;
Actionmanager.DoAction("Great Strides", null);
await Coroutine.Sleep(250);
Actionmanager.DoAction("Steady Hands II", null);
await Coroutine.Sleep(250);
Actionmanager.DoAction("Innovation", null);
await Coroutine.Sleep(250);
Actionmanager.DoAction("Advanced Touch", null);
await Coroutine.Sleep(250);
Actionmanager.DoAction("Careful Synthesis II", null);
await Coroutine.Sleep(250);
await Coroutine.Wait(10000, () => CraftingManager.AnimationLocked);
await Coroutine.Wait(Timeout.Infinite, () => !CraftingManager.AnimationLocked);
await Coroutine.Sleep(250);
]]>
Currently, it just spams Great Strides over and over :-(