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

请问一个代码问题

hiyaha

New Member
Joined
Mar 30, 2015
Messages
2
Reaction score
0
我想实现在一个地方采集一段时间 然后去另一个地方采集 。
求中间怎么让它停止采集然后传送的代码。
 
<Profile>
<Name>Fishing: Gigant Clam</Name>
<Order>
<While Condition ="True">
<If Condition="IsTimeBetween(22,23)">
<If Condition="not IsOnMap(134)">
<TeleportTo Name="horizon" AetheryteId="17" />
</If>
<Gather Loops="1">
<GatherObject>Rocky Outcrop</GatherObject>
<HotSpots>
<Hotspot Z="-130.494" Y="54.72997" X="107.0069" Radius="500"/>
</HotSpots>
<Slot>4</Slot> <!-- waters -->
<GatheringSkillOrder>
</GatheringSkillOrder>
</Gather>
</If>

<If Condition="IsTimeBetween(24,1)">
<If Condition="not IsOnMap(141)">
<TeleportTo Name="black brush station" AetheryteId="53" />
</If>
<Gather Loops="1">
<GatherObject>Mineral Deposit</GatherObject>
<HotSpots>
<Hotspot Z="32.65335" Y="-0.5175588" X="-85.56084" Radius="500"/>
</HotSpots>
<Slot>4</Slot> <!-- light -->
<GatheringSkillOrder>
</GatheringSkillOrder>
</Gather>
</If>



</While>
</Order>
</Profile>
 
无法做到中途停止,因为进入采集界面后无法进行取消,所以如果在采集的过程中时间到达下一条件的时间他就会卡在那不动了
 
Back
Top