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

Hearthing profile?

OmniRed

New Member
Joined
Aug 14, 2010
Messages
366
Reaction score
1
I've been attempting to make a profile that simply -

*Hearths (already set to Stormwind Inn)
*Walks to Repair vendor and repairs for anything below 80%
*walks to Justice Rewards area
*End

For whatever reason, I'm not comprehending how to get this done. I'm not good with code :(

Any help would be supremely appreciated.
 
PHP:
<HBProfile creator="OmniRed" version="1.0"> <!-- Beginning of HB profile -->

</QuestOrder>
	<Name>Hearth to JP Vendor</Name> <!-- Name of HB profile -->
  
	<MinLevel>1</MinLevel>  <!-- minimum level that can use the HBProfile -->
	<MaxLevel>86</MaxLevel> <!-- max level that can use the HBProfile -->

   	<MinDurability>0.8</MinDurability> <!-- Repair at 80% durability -->
	<MinFreeBagSlots>2</MinFreeBagSlots> <!-- How many free bag slots to keep until you need to sell / mail -->
	
	<!-- Set your selling and mailing here -->
	<SellGrey>True</SellGrey>
	<SellWhite>False</SellWhite>
	<SellGreen>False</SellGreen>
	<MailWhite>True</MailWhite>
	<MailGreen>True</MailGreen>
	<MailBlue>True</MailBlue>
	<MailPurple>True</MailPurple>

	 
		<Name>Hearthing</Name>
	
		<MinLevel>1</MinLevel> 
		<MaxLevel>86</MaxLevel> 

		<CustomBehavior File="UseHearthstone"/>	
		
		<RunTo X="-8838.34" Y="629.7979" Z="94.40707" />
		<RunTo X="-8799.791" Y="621.9938" Z="96.78207" />
				
			<Vendors> 
			<Vendor Name="Gunther Weller" Entry="1289" Type="Repair" X="-8790.421" Y="607.3484" Z="96.77299" />	<!-- Alliance Vendor -->
		</Vendors> 
	
	<RunTo X="-8806.26" Y="589.6211" Z="97.07298" />
	<RunTo X="-8721.893" Y="513.326" Z="96.65927" />
	<RunTo X="-8805.577" Y="343.3923" Z="107.0506" />
	
	<Vendors> 
			<Vendor Name="Magatha Silverton" Entry="44246" Type="Repair" X="-8802.37" Y="352.036" Z="109.1351" />	<!-- Alliance Justice Points Vendor -->
		</Vendors> 
	  
  <!-- end of hb profile -->
</HBProfile>
 
I've made it run the route once, but i can not get it to hearth first... I've researched how to add this in, but im having zero luck
 
I give up, no one wants to help - clearly cant do this on my own. Just getting more frustrated.

All i'm trying to do is..

Dismount
Hearth
repair
Run to JP vendor and stop.

Can someone please help me out with this?
 
Jezz a little research on your own, you could of solved it...
Use Kicks custom Profile interactions:
Then use:
<CustomBehavior File="Misc\RunLua" Lua="UseItemByName(6948)"/>
<CustomBehavior File="WaitTimer" WaitTime="15000" />

Figured this out on my own in 10mins
 
See attachment at end of post for download.

PHP:
<HBProfile> <!-- Beginning of HB profile -->

	<Name>Hearth to JP Vendor</Name> <!-- Name of HB profile -->
  
	<MinLevel>1</MinLevel>  <!-- minimum level that can use the HBProfile -->
	<MaxLevel>86</MaxLevel> <!-- max level that can use the HBProfile -->

   	<MinDurability>0.8</MinDurability> <!-- Repair at 80% durability -->
	<MinFreeBagSlots>2</MinFreeBagSlots> <!-- How many free bag slots to keep until you need to sell / mail -->
	
	<!-- Set your selling and mailing here -->
	<SellGrey>True</SellGrey>
	<SellWhite>False</SellWhite>
	<SellGreen>False</SellGreen>
	<MailWhite>True</MailWhite>
	<MailGreen>True</MailGreen>
	<MailBlue>True</MailBlue>
	<MailPurple>True</MailPurple>
	
	<Vendors> 
		<Vendor Name="Magatha Silverton" Entry="44246" Type="Repair" X="-8802.37" Y="352.036" Z="109.1351" />	<!-- Alliance Justice Points Vendor -->
		<Vendor Name="Gunther Weller" Entry="1289" Type="Repair" X="-8790.421" Y="607.3484" Z="96.77299" />    <!-- Alliance Vendor -->
	</Vendors> 
	
	<QuestOrder>

		<CustomBehavior File="RunMacro" Macro="/use hearthstone" NumOfTimes="1" WaitTime="15000"/>
		
		<RunTo X="-8838.34" Y="629.7979" Z="94.40707" />
		<RunTo X="-8799.791" Y="621.9938" Z="96.78207" />
		
		<CustomBehavior File="ForceSetVendor" DoTrain="False" DoRepair="True" DoVendor="True" />
		
		<RunTo X="-8806.26" Y="589.6211" Z="97.07298" />
		<RunTo X="-8721.893" Y="513.326" Z="96.65927" />
		<RunTo X="-8805.577" Y="343.3923" Z="107.0506" />
	
	<!-- end of hb profile -->
	
	</QuestOrder>
</HBProfile>
 

Attachments

Back
Top