Hey guys, can anyone explain how I stop my profiles (example below) from using the Gather Skill midway through a gathering node?
It'll often have 385 CP when arriving at the node, gain an additional 15CP from the first 3 gathering attempts and then use the skill (totally wasting it since there's only one attempt remaining). I want it to only use the skill if it has 400CP when arriving at the node, otherwise it should be saved until the next node.
It'll often have 385 CP when arriving at the node, gain an additional 15CP from the first 3 gathering attempts and then use the skill (totally wasting it since there's only one attempt remaining). I want it to only use the skill if it has 400CP when arriving at the node, otherwise it should be saved until the next node.
Code:
<Profile>
<Name>Silver Ore, South Shroud</Name>
<KillRadius>50</KillRadius>
<Order>
<If Condition="not IsOnMap(153)">
<TeleportTo Name="Camp Tranquil" AetheryteId="6"/>
</If>
<Gather while="True">
<GatherObject>Mineral Deposit</GatherObject>
<HotSpots>
<Hotspot Radius="80" X="-276.2787" Y="13.62761" Z="-101.4513"/>
</HotSpots>
<ItemNames>
<ItemName>Silver Ore</ItemName>
</ItemNames>
<GatheringSkillOrder>
<GatheringSkill SpellName="King's Yield" TimesToCast="1"/>
</GatheringSkillOrder>
</Gather>
</Order>
</Profile>