I've made my first gathering profile, thank you to everyone that worked with me. Now I have another issue I'm trying to figure out.
Below will be a simple test code so I can edit it as I learn what to do and so you can see what I'm trying to do.
I want to be able to farm multiple things when I'm at a gathering node. As in shards and crystals, while still setting up how much I want to gather for both.
So say, I'm gathering shards but at one of the nodes a crystal pops up. Now I have shards, crystals etc I can choose to gather. How would I go about gathering multiple things from a single node, be it 2-3 items and also have control of how much I want to gather for any item?
Thank you very much for your help.
Below will be a simple test code so I can edit it as I learn what to do and so you can see what I'm trying to do.
I want to be able to farm multiple things when I'm at a gathering node. As in shards and crystals, while still setting up how much I want to gather for both.
So say, I'm gathering shards but at one of the nodes a crystal pops up. Now I have shards, crystals etc I can choose to gather. How would I go about gathering multiple things from a single node, be it 2-3 items and also have control of how much I want to gather for any item?
Thank you very much for your help.
Code:
<Profile>
<Name>Water Shards and Crystals</Name>
<KillRadius>50</KillRadius>
<Order>
<!-- Gather Water Shards and Crystals -->
<If Condition="not IsOnMap(145)">
<TeleportTo Name="Camp Drybone" AetheryteId="18" />
</If>
<Gather while="ItemCount(7) < 5000">
<GatherObject>name</GatherObject>
<HotSpots>
<Hotspot Radius="80" X="-344.0994" Y="-28.06476" Z="-41.86419" />
</HotSpots>
<ItemNames>
<ItemName>name</ItemName>
</ItemNames>
<GatheringSkillOrder>
<GatheringSkill SpellName="name" TimesToCast="1" />
</GatheringSkillOrder>
</Gather>
</Order>
</Profile>
Last edited: