Hello, I'm trying to make a profile that makes a full set of SB gear (i.e. 4 different items)
So far this is what I have.
<Profile>
<Name>Crafting - Amethyst</Name>
<KillRadius>50</KillRadius>
<GrindAreas>
</GrindAreas>
<Order>
<While Condition="not HqHasAtLeast(811, 2)">
<Synthesize RecipeId="811" MinimumCp="214" />
<While Condition="CraftingManager.IsCrafting">
<Craft Actions>
</While>
</While>
<While Condition="not HqHasAtLeast(804, 2)">
<Synthesize RecipeId="804" MinimumCp="214" />
<While Condition="CraftingManager.IsCrafting">
<Craft Actions>
</While>
</While>
</Order>
</Profile>
I actually have the craft rotation in the <Craft Actions> sections, just felt it unnecessary to post all of that clutter.
So I know the While condition tag is the one that's giving me an issue.. I know the gatherassist probably uses the same tags, but I've had no luck getting the code out of it since it's a plugin.
Can somebody point me in the right direction to get my While condition tag to stop and move on to the next one upon reaching a certain number of items?
Thank you
So far this is what I have.
<Profile>
<Name>Crafting - Amethyst</Name>
<KillRadius>50</KillRadius>
<GrindAreas>
</GrindAreas>
<Order>
<While Condition="not HqHasAtLeast(811, 2)">
<Synthesize RecipeId="811" MinimumCp="214" />
<While Condition="CraftingManager.IsCrafting">
<Craft Actions>
</While>
</While>
<While Condition="not HqHasAtLeast(804, 2)">
<Synthesize RecipeId="804" MinimumCp="214" />
<While Condition="CraftingManager.IsCrafting">
<Craft Actions>
</While>
</While>
</Order>
</Profile>
I actually have the craft rotation in the <Craft Actions> sections, just felt it unnecessary to post all of that clutter.
So I know the While condition tag is the one that's giving me an issue.. I know the gatherassist probably uses the same tags, but I've had no luck getting the code out of it since it's a plugin.
Can somebody point me in the right direction to get my While condition tag to stop and move on to the next one upon reaching a certain number of items?
Thank you