What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

Sequence code help to dig Platinum Ore and Ebony Log

pia

Member
Joined
Sep 25, 2013
Messages
126
Reaction score
0
Give a code, thank you
 
Last edited:
<If Condition="IsTimeBetween(4,5)">
<If Condition="not IsOnMap(146)">
<TeleportTo Name="little ala mhigo" AetheryteId="19" />
</If>
<If Condition="Core.Me.CurrentJob != ClassJobType.Miner">
<RunCode Name="MIN"/>
<WaitTimer WaitTime="3"/>
</If>
<Gather Loops="1">
<GatherObject>Unspoiled Rocky Outcrop</GatherObject>
<HotSpots>
<Hotspot Z="-453.1892" Y="27.34322" X="-271.194" Radius="500"/>
</HotSpots>
<ItemNames>
<ItemName>Platinum Ore</ItemName>
</ItemNames>
<GatheringSkillOrder>
<GatheringSkill SpellName="King's Yield II" TimesToCast="1" />
<GatheringSkill SpellName="Sharp Vision II" TimesToCast="1" />
</GatheringSkillOrder>
</Gather>



This code is the problem? Why not the place to dig? Chinese client
 
Last edited:
Code:
<ItemNames>
<ItemName>Platinum Ore</ItemName>
</ItemNames>

You need to use slots for it since you are on the CN version and not Global, I don't know what slot Platinum ore is but just change the number:

Code:
<Slot>0</Slot>
 
It should not be the problem, he did not go to the acquisition, the acquisition does not seem to recognize unknown mine
 
<If Condition="IsTimeBetween(6,9)">
<If Condition="Core.Me.CurrentJob != ClassJobType.Botanist">
<RunCode Name="BTN"/>
<WaitTimer WaitTime="3"/>
</If>
<If Condition="not IsOnMap(139)">
<TeleportTo Name="Camp Bronze Lake" AetheryteId="15" />
</If>
<Gather Loops="1">
<GatherObject>Unspoiled Mature Tree</GatherObject>

<HotSpots>
<Hotspot Z="198.6308" Y="-1.532912" X="347.7453" Radius="500"/>
</HotSpots>
<ItemNames>
<ItemName>Bamboo Stick</ItemName>
<ItemName>Blood orange</ItemName>
</ItemNames>

<GatheringSkillOrder>

<GatheringSkill SpellName="Field Mastery II" TimesToCast="1" />
</GatheringSkillOrder>
</Gather>
<TeleportTo Name="Camp Dragonhead" AetheryteId="23" />
<If Condition="IsTimeBetween(7,9)">
<LogMessage Message= "Next spawn at 9AM Eorzea Time at Eastern Thanalan."/>
<WaitWhile Condition ="IsTimeBetween(7,9)" />
</If>
</If>


This generation of Chinese version, there is no problem
 
Give a code, thank you

<If Condition="IsTimeBetween(4,5)">
<If Condition="Core.Me.CurrentJob != ClassJobType.Miner">
<WaitTimer WaitTime="3"/>
<RunCode Name="MIN"/>
<WaitTimer WaitTime="3"/>
</If>
<If Condition="not IsOnMap(146)">
<TeleportTo Name="Little Ala Mhigo" AetheryteId="19" />
</If>
<Gather Loops="1">
<GatherObject>Unspoiled Mineral Deposit</GatherObject>
<HotSpots>
<HotSpot Radius="150" XYZ="-229.0867,22.32257,-516.2305" />
<HotSpot Radius="150" XYZ="-96.01563,12.06209,-640.4351" />
</HotSpots>
<Slot>5</Slot> <!-- platinum ore -->
<GatheringSkillOrder>
<GatheringSkill SpellName="King's Yield II" TimesToCast="1" />
<GatheringSkill SpellName="Sharp Vision II" TimesToCast="1" />
</GatheringSkillOrder>
</Gather>
<TeleportTo Name="Summerford Farms" AetheryteId="52" />
</If>
<If Condition="IsTimeBetween(4,7)">
<If Condition="not IsOnMap(134)">
<TeleportTo Name="Summerford Farms" AetheryteId="52" />
</If>

<If Condition="Core.Me.CurrentJob != ClassJobType.Botanist">
<WaitTimer WaitTime="3"/>
<RunCode Name="BTN"/>
<WaitTimer WaitTime="3"/>
</If>

<Gather Loops="1">
<GatherObject>Unspoiled Mature Tree</GatherObject>
<HotSpots>
<HotSpot Radius="700" XYZ="131.3368, 60.43965, 260.1599" />
</HotSpots>
<Slot>5</Slot>
<GatheringSkillOrder>
<GatheringSkill SpellName="Field Mastery" TimesToCast="1" />
</GatheringSkillOrder>
</Gather>
</If>
不客气
 
<GatherObject>Unspoiled Mineral Deposit</GatherObject> 这里错了


非常感谢
 
Back
Top