The bot will sometimes just sit there and look at the unspoiled node after clicking on it. Code: <If Condition="IsTimeBetween(1,3)"> <If Condition="not IsOnMap(154)"> <TeleportTo Name="Revenant's Toll" AetheryteId="24" /> <WaitTimer WaitTime="10"/> <RunCode Name="Dismount"/> </If> <If Condition="Core.Me.CurrentJob != ClassJobType.Botanist"> <RunCode Name="BTN"/> </If> <MoveTo XYZ="493.7555, -1.442154, -465.771" Name="Saint Coinach's Find"/> <RunCode Name="UseStealth"/> <RunCode Name="DisableMount"/> <Gather Loops="1"> <GatherObject>Unspoiled Mature Tree</GatherObject> <HotSpots> <Hotspot XYZ="507.8536, -3.861331, -434.2474" Radius="500"/> </HotSpots> <GatheringSkillOrder> <GatheringSkill SpellName="Llymlaen's Ward" TimesToCast="1" /> <GatheringSkill SpellName="Field Mastery" TimesToCast="1"/> </GatheringSkillOrder> <Slot>3</Slot> <!-- Wind Cluster --> </Gather> <RunCode Name="EnableMount" /> <RunCode Name="UnStealth" /> </If> Here's a log.
I believe my issue is the use of trying to cast "LLymlaen's Ward". Since you can't cast it until a shard, crystal or cluster is present in the list (hidden at the start). So the bot is likely hanging there trying to cast it. Is there anyway at all to reveal a slot and then cast gathering skills?
<Gather Loops="1"> <GatherObject>Unspoiled Mature Tree</GatherObject> <HotSpots> <Hotspot XYZ="507.8536, -3.861331, -434.2474" Radius="500"/> </HotSpots> <Slot>3</Slot> <!-- Wind Cluster --> <GatheringSkillOrder> <GatheringSkill SpellName="Llymlaen's Ward" TimesToCast="1" /> <GatheringSkill SpellName="Field Mastery" TimesToCast="1"/> </GatheringSkillOrder> </Gather> Try moving the slot above the gatherskill and see if that works
Try replacing the slot with the item names: <Gather Loops="1"> <GatherObject>Unspoiled Mature Tree</GatherObject> <HotSpots> <Hotspot XYZ="507.8536, -3.861331, -434.2474" Radius="500"/> </HotSpots> <ItemNames> <ItemName>Wind Cluster</ItemName> </ItemNames> <!-- Wind Cluster --> <GatheringSkillOrder> <GatheringSkill SpellName="Llymlaen's Ward" TimesToCast="1" /> <GatheringSkill SpellName="Field Mastery" TimesToCast="1"/> </GatheringSkillOrder> </Gather>
Sadly the name does nothing new; regardless of where ItemName or Slot is put. Must mean that the set-up for unspoiled nodes is gathering skills and then hit the nodes. A shame there is no way to uncover the node first and then use a gathering skill.
You could try running the code at this thread https://www.thebuddyforum.com/rebornbuddy-forum/rebornbuddy-profiles/193241-mining-botany-orderbot-unspoiled-nodes-farming.html to see how it behaves
Sadly I have tried that to no avail. The use of every profile created uses King's Yield/Blessed Harvest I or II. None of them use the ward spell unless it's a crystal or a shard farm profile.