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

Vendoring

yes you can,open your profile with a text editor(my suggestion is Notepad++)
find this line

<Vendor SellWhites="True" SellGreens="True" SellBlues="True" SellPurples="False">

and edit the values according what you like
 
where is that located?
<vendor SellWhites="True" SellGreens="True" SellBlues="True" SellPurples="False">

If I for example South Telara 35-51.xml open I have:
<? xml version = "1.0" encoding = "utf-8"?>
<profile>
<Tasks>
<AddDefaultJobs />
<LoadMesh Name="South Telara 35-51" />
<AddJob>
<MendSoul>
<Healers>
<- Lantern Hook ->
<hotSpot X="7708.562" Y="917.3669" Z="6359.512" />
<hotSpot X="7623.488" Y="915.7373" Z="6238.449" />
<- Fortune 's Shore ->
<hotSpot X="6513.109" Y="886.249" Z="7047.043" />
<- Wyrmbane Spire ->
<hotSpot X="6099.354" Y="979.5236" Z="7291.879" />
</ Healers>
</ MendSoul>
</ AddJob>
<AddJob>
<vendor> <------- Do you mean this?
<Vendors>
<- Lantern Hook ->
<hotSpot X="7594.341" Y="915.2083" Z="6330.176" />
<- Fortune 's Shore ->
<hotSpot X="6624.151" Y="880.2174" Z="7034.096" />
<- Wyrmbane Spire ->
<hotSpot X="6090.015" Y="978.959" Z="7298.863" />
</ Vendor>
</ Vendor>
</ AddJob>
I have nowhere else the vendor code.
 
You're doing it wrong

Vendors with a capital V
Hotspots w/ a capital H, lowercase s
you also didn't close out the Vendors tag, you instead closed out 2 Vendor tags

PHP:
    <AddJob>
      <MendSoul>
        <Healers>
			<Healer X="5489.026" Y="976.4448" Z="2145.236" /> <!-- Timberveil -->
			<Healer X="6230.333" Y="911.7757" Z="1619.682" /> <!--Reclaimers Hold-->
			<Healer X="6376.774" Y="910.1386" Z="1852.539" /> <!--Hammerknell Pass-->
			<Healer X="6083.714" Y="914.9303" Z="2019.509" /> <!--Seersage Camp-->
        </Healers>
      </MendSoul>
    </AddJob>
    <AddJob>
      <Vendor SellWhites="True" SellGreens="True" SellBlues="True" SellPurples="False">
        <Vendors>
          <Vendor X="5473.064" Y="975.6812" Z="2175.013" /> <!-- Timberveil -->
          <Vendor X="6311.068" Y="910.6259" Z="1594.864" /> <!--Reclaimers Hold-->
          <Vendor X="6386.857" Y="910.2822" Z="1850.629" /> <!--Hammerknell Pass-->
          <Vendor X="6100.326" Y="916.3853" Z="2030.56" /> <!--Seersage Camp-->
        </Vendors>
      </Vendor>
    </AddJob>

<Vendor X Y Z /> and <Healer X Y Z /> can also just be <Hotspot X Y Z /> ... i just like making them Vendor and Healer
 
Back
Top