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

Profile Problem

eXtOphius

Member
Joined
Jan 15, 2010
Messages
219
Reaction score
3
When writing my own profiles, any time I try to add in a line for comments, I receive the following error, depending on the exact location in the code:

Code:
Name cannot begin with the '-' character, hexadecimal value 0x2D.  Line 45, position 5.

I am using Notepad++ to create and edit profiles, however, when I load a profile that I have downloaded from the forums, the <--!Comment--> is colored green. Whenever I try to add in my own comments on my profile, the <--!Comment--> is written in blue.

I'm not exactly sure what is causing this, and have done a brief search regarding it, but found nothing specific to help solve my problem. Here is the code that I have been trying to use (it works fine without trying to use comments).

Code:
<HBProfile>
	<Name>The Warp Fields 58-62</Name>
	<MinDurability>0.2</MinDurability> 
	<MinFreeBagSlots>2</MinFreeBagSlots> 
	<SellGrey>True</SellGrey> 
	<SellWhite>False</SellWhite> 
	<SellGreen>False</SellGreen> 
	<SellBlue>False</SellBlue> 
	<SellPurple>False</SellPurple> 
	<MinLevel>58</MinLevel> 
	<MaxLevel>81</MaxLevel> 
	
	<ForceMail>
	</ForceMail>
	
	<Mailboxes>
		<Mailbox X="172.1781" Y="2623.962" Z="87.11125" />
	</Mailboxes>
	
	<ProtectedItems>
	</ProtectedItems>
	
	<Vendors>
		<Vendor Name="Fallesh Sunfallow" Entry="18997" Type="Repair" X="-587.4686" Y="4171.818" Z="65.99728" />
		<Vendor Name="Provisioner Valine" Entry="17277" Type="Food" X="-613.8154" Y="4081.383" Z="91.56592" />		
	</Vendors>
	
	<Subprofile>
		<Name>Primal Shadow Farming 58-62</Name>
		<MinLevel>58</MinLevel>
		<MaxLevel>81</MaxLevel>
		<Factions>954</Factions>
		<Hotspots>
			<Hotspot X="-1398.897" Y="3288.672" Z="36.57644" />
			<Hotspot X="-1353.504" Y="3184.373" Z="35.15106" />
			<Hotspot X="-1434.045" Y="3155.981" Z="10.34151" />
			<Hotspot X="-1415.739" Y="3043.472" Z="-4.191078" />
			<Hotspot X="-1417.152" Y="2964.475" Z="-33.66726" />
			<Hotspot X="-1396.126" Y="2897.149" Z="-31.96439" />
			<Hotspot X="-1310.335" Y="2930.708" Z="-3.268827" />
			<Hotspot X="-1330.786" Y="3000.568" Z="6.493227" />
			<Hotspot X="-1352.905" Y="3082.975" Z="21.93101" />
			<Hotspot X="-1303.198" Y="3146.056" Z="38.00975" />
		</Hotspots>
		<Blackspots>
			<--!Blackspot the spawn points for the Voidwalkers-->
			<Blackspot X="-1380.164" Y="2967.261" Z="-12.56252" Radius="38.59173" />
			<Blackspot X="-1381.098" Y="3156.429" Z="26.35114" Radius="26.83101" />
			<Blackspot X="-1451.625" Y="3289.901" Z="13.81533" Radius="21.28664" Height="13.44907" />  
			<--!Blackspot The Great Fissure for going back to Falcon Watch-->
			<Blackspot X="-647.302" Y="3979.641" Z="29.79781" Radius="102.1185" />
			<Blackspot X="-591.5958" Y="3879.314" Z="28.99519" Radius="66.83578" />
			<Blackspot X="-552.195" Y="3772.936" Z="29.00158" Radius="90.90826" />
			<Blackspot X="-624.1825" Y="3685.401" Z="28.5473" Radius="146.9866" />
			<Blackspot X="-829.5907" Y="3556.101" Z="61.42252" Radius="85.96019" Height="36.08797" />
		</Blackspots>
	</Subprofile>
</HBProfile>

Any help with this would be greatly appreciated.

Thanks in advance,
XtO
 
Last edited:
Fix this
<--!Blackspot The Great Fissure for going back to Falcon Watch-->
<--!Blackspot the spawn points for the Voidwalkers-->
Should be
<!-- Blackspot the spawn points for the Voidwalkers -->
<!-- Blackspot The Great Fissure for going back to Falcon Watch -->
 
Last edited:
Fix this
<--!Blackspot The Great Fissure for going back to Falcon Watch-->
<--!Blackspot the spawn points for the Voidwalkers-->
Should be
<!-- Blackspot the spawn points for the Voidwalkers -->
<!-- Blackspot The Great Fissure for going back to Falcon Watch -->

I have no idea why I failed at that so badly, but thank you for catching that.

XtO
 
Back
Top