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

coding help

rockguy902

New Member
Joined
Apr 22, 2010
Messages
77
Reaction score
0
i need some help im trying to run a test code to pick up 1 quest in stars rest in dragonblight and i have the whole thing written out but im getting the error "Unexpected end tag. Line 1, position 3." when i try to load the profile any suggestions as to why i cant figure it out.

if i can get this running im planning on making a 73-80 full questing and item using profile but this is just a test for now. its been a few years since i did serious coding so i need the help thx.
 

Attachments

Line1: </HBProfile> should be <HBProfile>
Line 30: <Quest> should be <Quest>
Line 37: <Objective ... > should end with a />
Line 41: <QuestOrder> should be </QuestOrder>

Tip:

With XML, "tags", i.e. <Quest> must always either self terminate or have a separate closing tag. Examples:
<Element attribute="value" />
<Element>value</Element>

This should do it:

PHP:
<HBProfile>
    <MinLevel>73</MinLevel>
    <MaxLevel>80</MaxLevel>
    <TargetMinLevel>73</TargetMinLevel>
    <TargetMaxLevel>80</TargetMaxLevel>
    <MinDurability>0</MinDurability>
    <MinFreeBagSlots>2</MinFreeBagSlots>
    <SellGrey>True</SellGrey>
    <SellWhite>True</SellWhite>
    <SellGreen>False</SellGreen>
    <MailGreen>True</MailGreen>
    <MailBlue>True</MailBlue>
    <MailPurple>True</MailPurple>

    <!-- Quest Over Rides -->

    <Quest Id="12000" Name="Rifle the Bodies">
        <Objective Type="CollectItem" ItemId="35792" CollectCount="1">
            <CollectFrom>
                <Mob Id="26477" />
            </CollectFrom>
            <Hotspots>
                <Hotspot X="4095.72" Y="3497.408" Z="131.6657" />
                <Hotspot X="3369.85" Y="2335.855" Z="44.08359" />
                <Hotspot X="3316.384" Y="2316.661" Z="40.93035" />
                <Hotspot X="3279.077" Y="2258.18" Z="46.923" />
            </Hotspots>
        </Objective>
    </Quest>
    <!-- End Quest Over Rides -->
    <QuestOrder>
        <Checkpoint Level="72" />
        <PickUp QuestName="Rifle the Bodies" QuestId="12000" GiverName="Image of Archmage Modera" GiverId="26673" />
        <Objective QuestName="Rifle the Bodies" QuestId="12000" Type="CollectItem" ItemId="35792" CollectCount="1" />
        <TurnIn QuestName="Rifle the Bodies" QuestId="12000" TurnInName="Image of Archmage Modera" GiverId="26673" />
    </QuestOrder>
</HBProfile>
 
Last edited:
awsome it worked thanks a ton, no i just have it giving errors in HB on the quest my next step to figure out tomorrow i guess.
 
Back
Top