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

Chest Profile Problems

Ill-Emperor-llI

New Member
Joined
Sep 19, 2014
Messages
19
Reaction score
0
Greetings. Im just above new at this but it seems Im struggling with taxis and elevators. Im making a chest farm for Mekeb. I cant seem to get off GH7. A proofread would be much appreciated :).

Code:
<Profile>
  <Name>Mekeb Chest Farming</Name>

	<Taxis>
	<Hotspot Name="Gravity Hook Seven Shuttle" X="-323.0785" Y="-17.11476" Z="-13.7874" />
	<Hotspot Name="Solida Hesk's Estate Shuttle" X="-317.9326" Y="-24.50653" Z="-242.5705" />
	<Hotspot Name="Hutt Strongholds Shuttle" X="-24.3611" Y="-14.97505" Z="-396.5716" />
	<Hotspot Name="Tarlam Settlements Shuttle" X="173.6209" Y="-21.40659" Z="-154.8154" />
	<Hotspot Name="Cartel Mining Mesa Shuttle" X="-83.3998" Y="-69.9072" Z="216.1599" />
	<Hotspot Name="The Sanctuary Shuttle" X="124.7881" Y="-29.78263" Z="466.458" />
	</Taxis>
	
<Vendors>	
<Hotspot Name="Imperial Medical Droid" X="-335.3287" Y="-24.26608" Z="-10.0535" />
</Vendors>

<Questing>
<UseObject QuestId="1" Name="Security Chest" Radius="750" BlacklistDuration="600" >
      <Hotspots>
		<If Condition="(Me.Position.X &gt; -335) and (Me.Position.X &lt; -321) and (Me.Position.Y &gt; -18) and (Me.Position.Y &lt; -17) and (Me.Position.Z &gt; -20) and (Me.Position.Z &lt; -7)">
				<UseTransport Type="Wonkavator" TransporterName="Gravity Hook Transport" Option="Gravity Hook Service Level" 
										X="-330.5677" Y="-17.21365" Z="-13.18888" 
										ToX="-342.6631" ToY="-24.35499" ToZ="-13.3162" />
				<WaitTimer QuestId="1" WaitTime="2" />
		</If>
<Hotspot Name="Chest" X="-353.5642" Y="-24.16299" Z="29.71362" />
<Hotspot Name="Chest" X="-357.0776" Y="-23.96797" Z="31.28224" />
<Hotspot Name="Chest" X="-359.5167" Y="-23.9685" Z="31.00727" />
<Hotspot Name="Chest" X="-318.7643" Y="-22.71964" Z="20.49657" />
<Hotspot Name="Chest" X="-315.4024" Y="-24.35596" Z="-6.472297" />
<Hotspot Name="Chest" X="-314.3401" Y="-24.57931" Z="-14.20586" />
<Hotspot Name="Chest" X="-314.3401" Y="-24.57931" Z="-14.20586" />
			<If Condition="(Me.Position.X &gt; -344) and (Me.Position.X &lt; -323) and (Me.Position.Y &gt; -26) and (Me.Position.Y &lt; -23) and (Me.Position.Z &gt; -18) and (Me.Position.Z &lt; -9)"
			<UseTransport Type="Wonkavator" TransporterName="Gravity Hook Transport" Option="Gravity Hook Loading Ring"
											X="-343.0327" Y="-24.399" Z="-13.79671" 
											ToX="-330.0282" ToY="-17.1701" ToZ="-13.2005" />
			<WaitTimer QuestId="1" WaitTime="2" />
		</If>
<Hotspot Name="Chest" X="-304.5342" Y="-23.99371" Z="-232.6638" />
<Hotspot Name="Chest" X="-303.2539" Y="-23.99217" Z="-233.2974" />
<Hotspot Name="Chest" X="-31.73538" Y="-14.90539" Z="-430.0786" />
<Hotspot Name="Chest" X="33.64091" Y="-10.89241" Z="-448.4982" />
<Hotspot Name="Chest" X="197.0897" Y="-21.81026" Z="-160.8593" />
<Hotspot Name="Chest" X="198.0044" Y="-20.53479" Z="-198.9646" />
<Hotspot Name="Chest" X="165.1584" Y="-17.299" Z="-176.7901" />
<Hotspot Name="Chest" X="176.9918" Y="-20.31134" Z="-165.857" />
<Hotspot Name="Chest" X="-43.65193" Y="-66.84276" Z="235.515" />
<Hotspot Name="Chest" X="-29.58609" Y="-63.88963" Z="241.9979" />
<Hotspot Name="Chest" X="-0.7702385" Y="-65.02385" Z="237.9692" />
<Hotspot Name="Chest" X="117.2066" Y="-29.42224" Z="445.9658" />
<Hotspot Name="Chest" X="91.7779" Y="-29.96432" Z="435.0841" />
      </Hotspots>
    </UseObject>
    
  </Questing>

  </Profile>
 
You interpreted the Useobject sintax semi false.
You CANT put in Usetaxi code inside an UseObject code.

What best you can do is zone your chests.
For instance:

If condition <between what coordinates do i need to use my elevator?>
MoveTo elevator
Use elevator
MoveTo first safe distance of chests

If condition <between what coordinates are these chests>
UseObject (code you already written but without elevator)

If condition <between what coordinates do i need to use my elevator?>
MoveTo elevator
Use elevator
MoveTo first safe distance of chests

<Reload profile>

BUT BW can interact with chests if its enabled.
if then you can create a series of moveto's where the chests are, in between with a elevator and at the end a reload profile:
something like this:

MoveTo <Coordinates chest>
MoveTo <Coordinates chest>
MoveTo <Coordinates chest>
MoveTo <Coordinates chest>
UseElevator
MoveTo <Coordinates chest>
MoveTo <Coordinates chest>
MoveTo <Coordinates chest>
MoveTo <Coordinates chest>
UseElevator
MoveTo <Coordinates chest>
MoveTo <Coordinates chest>
MoveTo <Coordinates chest>
<Load profile> (load this profile to reload)

Hope it works!
 
Back
Top