Hi guys,
I'm wondering if it's possible to craft multiple items with one profile, and if so, how I'd break each individual item in the profile?
Say for example I want to run this to create 5 pairs of Spinel Earrings -
Followed by this to create 5 Electrum Gorgets -
Is it possible to merge the two so that soon as it finishes the 5 Earrings it moves on to the 5 gorgets without me needing to load another profile? I know it sounds incredibly lazy but I'm wanting one profile to create a few sets for spiritbonding that I can totally AFK.
I'm wondering if it's possible to craft multiple items with one profile, and if so, how I'd break each individual item in the profile?
Say for example I want to run this to create 5 pairs of Spinel Earrings -
Code:
<?xml version="1.0" encoding="utf-8"?>
<Profile>
<Name>Goldsmith - Spinel Earrings</Name>
<Order>
<If Condition="not HasAtLeast(4266,5)">
<While Condition="not HasAtLeast(4266,5)">
<LogMessage Message="Crafting Spinel Earrings" />
<Synthesize RecipeId="896" RequiredSkills="286,281,279,283,100009,100069,100069" MinimumCp="317" HQMats="-2, -2, -2, -2, -2, -2" />
<While Condition="CraftingManager.IsCrafting">
<CraftAction ActionId="286" Name="Comfort Zone" />
<CraftAction ActionId="255" Name="Inner Quiet" />
<CraftAction ActionId="281" Name="Steady Hand II" />
<CraftAction ActionId="100076" Name="Basic Touch" />
<CraftAction ActionId="100076" Name="Basic Touch" />
<CraftAction ActionId="100076" Name="Basic Touch" />
<CraftAction ActionId="100076" Name="Basic Touch" />
<CraftAction ActionId="100076" Name="Basic Touch" />
<CraftAction ActionId="247" Name="Steady Hand" />
<CraftAction ActionId="279" Name="Waste Not" />
<CraftAction ActionId="100078" Name="Standard Touch" />
<CraftAction ActionId="263" Name="Great Strides" />
<CraftAction ActionId="283" Name="Ingenuity II" />
<CraftAction ActionId="100009" Name="Byregot's Blessing" />
<CraftAction ActionId="100069" Name="Careful Synthesis II" />
<CraftAction ActionId="100069" Name="Careful Synthesis II" />
</While>
</While>
</If>
<If Condition="HasAtLeast(4266,5)">
<LogMessage Message="Crafting complete. 5 Spinel Earrings found in your inventory." />
<StopCrafting />
</If>
</Order>
</Profile>
Followed by this to create 5 Electrum Gorgets -
Code:
<?xml version="1.0" encoding="utf-8"?>
<Profile>
<Name>Goldsmith - Electrum Gorget</Name>
<Order>
<If Condition="not HasAtLeast(4361,5)">
<While Condition="not HasAtLeast(4361,5)">
<LogMessage Message="Crafting Electrum Gorget" />
<Synthesize RecipeId="857" RequiredSkills="286,281,279,283,100009,100069,100069" MinimumCp="317" HQMats="-2, -2, -2, -2, -2, -2" />
<While Condition="CraftingManager.IsCrafting">
<CraftAction ActionId="286" Name="Comfort Zone" />
<CraftAction ActionId="255" Name="Inner Quiet" />
<CraftAction ActionId="281" Name="Steady Hand II" />
<CraftAction ActionId="100076" Name="Basic Touch" />
<CraftAction ActionId="100076" Name="Basic Touch" />
<CraftAction ActionId="100076" Name="Basic Touch" />
<CraftAction ActionId="100076" Name="Basic Touch" />
<CraftAction ActionId="100076" Name="Basic Touch" />
<CraftAction ActionId="247" Name="Steady Hand" />
<CraftAction ActionId="279" Name="Waste Not" />
<CraftAction ActionId="100078" Name="Standard Touch" />
<CraftAction ActionId="263" Name="Great Strides" />
<CraftAction ActionId="283" Name="Ingenuity II" />
<CraftAction ActionId="100009" Name="Byregot's Blessing" />
<CraftAction ActionId="100069" Name="Careful Synthesis II" />
<CraftAction ActionId="100069" Name="Careful Synthesis II" />
</While>
</While>
</If>
<If Condition="HasAtLeast(4361,5)">
<LogMessage Message="Crafting complete. 5 Electrum Gorget found in your inventory." />
<StopCrafting />
</If>
</Order>
</Profile>
Is it possible to merge the two so that soon as it finishes the 5 Earrings it moves on to the 5 gorgets without me needing to load another profile? I know it sounds incredibly lazy but I'm wanting one profile to create a few sets for spiritbonding that I can totally AFK.