avocadowarrior
New Member
- Joined
- Jun 17, 2012
- Messages
- 70
I'm writing a very basic script that I intend to use with HBRelog tasks to enable mailing items to a bank alt for AHing.
So the purpose of this script is:
1. Fly to ground and dismount
2. Hearth
3. Mail items to alt
What I've written so far (and haven't tested as I'm at work):
What I'm hoping is that when I start the script, no matter where it is, it will fly to the ground and dismount (with the ForcedDismount behaviour) --> Hearth to Shrine (with UseItem set to the Hearthstone ID) and then realise the bags are "full" (with the very tight bag space allowance) and mail everything to the alt.
What I'm actually getting is a HB error:
The 'CustomBehavior' start tag on line 31 position 4 does not match the end tag of 'QuestOrder'. Line 34, position 4.
Can someone please point me in the right direction?
So the purpose of this script is:
1. Fly to ground and dismount
2. Hearth
3. Mail items to alt
What I've written so far (and haven't tested as I'm at work):
Code:
<HBProfile>
<Name>Hearth and Mail</Name>
<MinLevel>85</MinLevel>
<MaxLevel>91</MaxLevel>
<MinFreeBagSlots>60</MinFreeBagSlots>
<MailGrey>False</MailGrey>
<MailWhite>True</MailWhite>
<MailGreen>True</MailGreen>
<MailBlue>True</MailBlue>
<MailPurple>True</MailPurple>
<SellGrey>True</SellGrey>
<SellWhite>True</SellWhite>
<SellGreen>False</SellGreen>
<SellBlue>False</SellBlue>
<TargetElites>False</TargetElites>
<Mailboxes>
<Mailbox X="791.27" Y="296.38" Z="503.42" /> <!-- Shrine -->
</Mailboxes>
<Vendors>
<Vendor Name="Sway Dish Chef" Entry="63013" Type="Food" X="776.9479" Y="270.2587" Z="503.4202" /> <!-- Shrine -->
</Vendors>
<QuestOrder>
<Custom Behavior File="ForcedDismount">
<UseItem ItemId="6948" /> <!--Hearthstone-->
</QuestOrder>
</HBProfile>
What I'm hoping is that when I start the script, no matter where it is, it will fly to the ground and dismount (with the ForcedDismount behaviour) --> Hearth to Shrine (with UseItem set to the Hearthstone ID) and then realise the bags are "full" (with the very tight bag space allowance) and mail everything to the alt.
What I'm actually getting is a HB error:
The 'CustomBehavior' start tag on line 31 position 4 does not match the end tag of 'QuestOrder'. Line 34, position 4.
Can someone please point me in the right direction?