• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Channels Error

Tibia Rox

Member
Joined
Feb 4, 2009
Messages
1,181
Reaction score
9
Location
U.S.A
When I start my server, I get this message 'Premature end of data in tag channels line 10, 2 , 20'

Here's Channels.xml
Code:
<?xml version="1.0" encoding="UTF-8"?>
<channels>
	<!-- README:
		0 - dynamic, reserved for guilds
		1 - always acts as Party channel, only "name" tag available
		3 - always acts as Rule Violations channel
		7 - acts as Help channel- clientsided message
		65535 - DO NOT CHANGE THE ID- only "name", "enabled", "active" and "logged" tags available
	 -->
<channels>
	<channel id="1" name="Party"/>
	<channel id="2" name="Staff" access="3"/>
	<channel id="3" name="Rule Violations" logged="yes"/>
	<channel id="4" name="Game-Chat" level="2"/>
	<channel id="5" name="Trade" level="8" muted="120" conditionId="2" conditionMessage="You may only place one offer in two minutes.">
		<vocation id="1-8"/>
	<channel id="6" name="Battle" level="1"/>
	<channel id="7" name="Help" logged="yes"/>
	<channel id="65535" name="Private Chat Channel"/>
</channels>

Thanks in advance,
Tibia Rox
 
XML:
<?xml version="1.0" encoding="UTF-8"?>
<channels>
	<channel id="1" name="Party"/>
	<channel id="2" name="Staff" access="3"/>
	<channel id="3" name="Rule Violations" logged="yes"/>
	<channel id="4" name="Counselor" access="1"/>
	<channel id="5" name="Game-Chat" level="2"/>
	<channel id="6" name="Trade" level="8" muted="120" conditionId="2" conditionMessage="You may only place one offer in two minutes.">
		<vocation id="1-8"/>
	</channel>
	<channel id="7" name="Trade-Rookgaard" level="2" muted="120" conditionId="3" conditionMessage="You may only place one offer in two minutes.">
		<vocation id="0"/>
	</channel>
	<channel id="8" name="RL-Chat" level="2"/>
	<channel id="9" name="Help" logged="yes"/>
	<!-- <channel id="10" name="My Custom Channel"/> -->
	<channel id="65535" name="Private Chat Channel"/>
</channels>
 
I was just wondering if there was a way to delete some of the channels, for instance, RL-Chat.

Edit: The above script still doesnt work.
It says premature ending at lines 2, 10, and 20.

Code:
<?xml version="1.0" encoding="UTF-8"?>
<channels>                          [COLOR="red"][I]Line 2[/I][/COLOR]	
<!-- README:
		0 - dynamic, reserved for guilds
		1 - always acts as Party channel, only "name" tag available
		3 - always acts as Rule Violations channel
		7 - acts as Help channel- clientsided message
		65535 - DO NOT CHANGE THE ID- only "name", "enabled", "active" and "logged" tags available
	 -->
<channels>                [COLOR="red"][I]Line 10[/I][/COLOR]
	<channel id="1" name="Party"/>
	<channel id="2" name="Staff" access="3"/>
	<channel id="3" name="Rule Violations" logged="yes"/>
	<channel id="4" name="Game-Chat" level="2"/>
	<channel id="5" name="Trade" level="8" muted="120" conditionId="2" conditionMessage="You may only place one offer in two minutes.">
		<vocation id="1-8"/>
	<channel id="6" name="Battle" level="1"/>
	<channel id="7" name="Help" logged="yes"/>
	<channel id="65535" name="Private Chat Channel"/>
</channels>            [COLOR="red"][I]Line 20[/I][/COLOR]
 
Last edited:
Back
Top