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

Problem with selling trash

you can't

you have to change it to quest order and have it while condition true, then while condition me.freebagslots > 10 and then stick your grinding stuff in there and then if condition me.freebagslots <= 10

PHP:
			<If Condition="(Me.IsAlliance)" >
				<If Condition="(Me.FreeBagSlots &lt;= 10)" >
				
					<CustomBehavior File="Message" Text="Doing a sell/mail run at Allerian Stronghold" LogColor="Red" />
					
					<CustomBehavior File="FlyTo" X="-2952.829" Y="4009.189" Z="0.08629808" Name="Mail Run" />
					<CustomBehavior File="ForcedDismount" />

					<SetVendor><Vendors>
						<Vendor Name="Cecil Meyers" Entry="19056" Type="Repair" X="-2978.951" Y="4033.115" Z="3.573883" />
					</Vendors></SetVendor>
					<SetMailbox><Mailboxes>
						<Mailbox X="-2931.671" Y="4008.319" Z="-1.318626" />
					</Mailboxes></SetMailbox>
					
					<CustomBehavior File="ForceSetVendor" VendorType="Repair" />
					<CustomBehavior File="ForceSetVendor" VendorType="Sell" />
					<CustomBehavior File="ForceSetVendor" VendorType="Mail" />
					<!-- <CustomBehavior File="ForceSetVendor" DoMail="True" DoSell="True" DoRepair="True" DoTrain="False" /> -->
					
					<ClearMailbox /><ClearVendor />
				
				</If>
			</If>
				
			<If Condition="(Me.IsHorde)" >
				<If Condition="(Me.FreeBagSlots &lt;= 10)" >
				
					<CustomBehavior File="Message" Text="Doing a sell/mail run at Stonebreaker Hold" LogColor="Red" />
					
					<CustomBehavior File="FlyTo" X="-2616.172" Y="4413.635" Z="35.41801" Name="Mail Run" />
					<CustomBehavior File="ForcedDismount" />

					<SetVendor><Vendors>
						<Vendor Name="Bar Talet" Entry="18962" Type="Repair" X="-2639.384" Y="4425.386" Z="36.68298" />
					</Vendors></SetVendor>
					<SetMailbox><Mailboxes>
						<Mailbox X="-2616.172" Y="4413.635" Z="35.41801" />
					</Mailboxes></SetMailbox>
					
					<CustomBehavior File="ForceSetVendor" VendorType="Repair" />
					<CustomBehavior File="ForceSetVendor" VendorType="Sell" />
					<CustomBehavior File="ForceSetVendor" VendorType="Mail" />
					<!-- <CustomBehavior File="ForceSetVendor" DoMail="True" DoSell="True" DoRepair="True" DoTrain="False" /> -->
					
					<ClearMailbox /><ClearVendor />
				
				</If>
			</If>

something similar to this, but in a while condition and using setgrindarea tag

upload your profile here if you don't understand what i said (if it's private and you don't want anyone looking at it - then just save as a new file and delete the hotspots and name of the area you're farming in and i'll see what i can do)
 
Last edited:
You'll have to fill out this xyz (generally first hotspot for your grind area):
PHP:
				<CustomBehavior File="FlyTo" X Y Z  Name="Profile Start" />
You'll need to fill out the XYZ of the 'land at' coords for repair / mail run
PHP:
				<CustomBehavior File="FlyTo" XYZ  Name="Repair Run" />
				<CustomBehavior File="ForcedDismount" />
Fill out your vendor here:
PHP:
				<SetVendor><Vendors>
					<Vendor Name="" Entry="" Type="Repair" X Y Z /> <!-- XX Location -->
				</Vendors></SetVendor>
Fill out this mailbox XYZ:
PHP:
				<SetMailbox><Mailboxes>
					<Mailbox X Y Z /> <!-- XX Location -->
				</Mailboxes></SetMailbox>

Also, put your hotspots and Factions back in :)
 

Attachments

Last edited:
oh

try changing true to false in the condition

PHP:
		<While Condition="True" >
let me know what happens
 
Last edited:
can't understand why isn't it working.....I've loaded ur profile, selected Questing mode but this shit is happening ((

aye, i need to test it out on my end. i'm sure it's something simple. you changed True to False and pressed save, then reloaded the profile... right?
 
change the while condition to:


<While Condition="(Me.Level &gt; 1)" >


If it still has an issue, i'll have to run it myself
 
Why the heck delete all your replies?! Now if someone has the same problem, no one can use this thread to help them.
 
Back
Top