Is it possible to include multiple <Slot> in one <Gather>-attempt, so you don't need to cast Toil to see the itemnames?
Like
Like
Code:
<!--Grade 3 Topsoil-->
<If Condition="IsTimeBetween(5,6)">
<If Condition="not IsOnMap(140)">
<TeleportTo Name="Horizon" AetheryteId="17" />
</If>
</If>
<If Condition="IsTimeBetween(5,6)">
<TeleportTo Name="Horizon" AetheryteId="17" />
<Gather Loops="1">
<GatherObject>Unspoiled Rocky Outcrop</GatherObject>
<HotSpots>
<HotSpot Radius="150" XYZ="-96.79874,49.89136,307.5961" />
<HotSpot Radius="150" XYZ="-159.722,39.59176,361.2084" />
</HotSpots>
<Slot>7</Slot>
<Slot>4</Slot>
<GatheringSkillOrder>
<GatheringSkill SpellName="Sharp Vision II" TimesToCast="1" />
</GatheringSkillOrder>
</Gather>
<WaitWhile Condition ="IsTimeBetween(5,6)" />
</If>