• 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!

Quest Log.

enriel

Big L
Joined
Dec 14, 2007
Messages
1,254
Reaction score
2
Location
Montenegro
Why is this questlog unable to load?

Code:
<?xml version="1.0" encoding="UTF-8"?>
<quests>
	<quest name="Pits Of Inferno" startstorageid="320" startstoragevalue="1">
		<mission name="Throneroom of Verminor" storageid="1234564" startvalue="0" endvalue="1">
		<missionstate id="0" description="Throneroom of Verminor is succesfully completed"/>
		</mission>
		<mission name="Throneroom of Infernatil" storageid="1234565" startvalue="0" endvalue="0">
			<missionstate id="0" description="Throneroom of Infernatil is succesfully completed"/>
		</mission>		
		
		<mission name="Throneroom of Apocalypse" storageid="1234563" startvalue="1" endvalue="1">
			<missionstate id="0" description="Throneroom of Apocalypse is succesfully completed"/>
		</mission>

		<mission name="Throneroom of Ashfalor" storageid="1234562" startvalue="1" endvalue="1">
			<missionstate id="0" description="Throneroom of Ashfalor is succesfully completed"/>
		</mission>

		<mission name="Throneroom of Tafariel" storageid="1234561" startvalue="1" endvalue="1">
			<missionstate id="0" description="Throneroom of Tafariel is succesfully completed"/>
		</mission>

		<mission name="Throneroom of Bazir" storageid="1234567" startvalue="0" endvalue="1">
			<missionstate id="0" description="Throneroom of Bazir is succesfully completed"/>
		</mission>

		<mission name="Throneroom of Pumin" storageid="1234566" startvalue="0" endvalue="0">
			<missionstate id="0" description="Throneroom of Pumin is succesfully completed"/>
		</mission>
		
		<quest name="The Arena" startstorageid="322" startstoragevalue="1">
		<mission name="Greenhorn" storageid="42366" startvalue="0" endvalue="1">
		<missionstate id="0" description="You have succesfully completed Greenhorn level"/>
		</mission>
		<mission name="Scrapper" storageid="42376" startvalue="0" endvalue="0">
			<missionstate id="0" description="You have succesfully completed Scrapper level"/>
		</mission>		
		
		<mission name="Warlord" storageid="42386" startvalue="1" endvalue="1">
			<missionstate id="0" description="You have succesfully completed Warlord level"/>
		</mission>
		
				<quest name="The Inquisition Quest" startstorageid="323" startstoragevalue="1">
		<mission name="Greenhorn" storageid="42366" startvalue="0" endvalue="1">
		<missionstate id="0" description="You have succesfully completed The Inquisition Quest"/>
		</mission>
		<mission name="Demonhunter outfit" storageid="42376" startvalue="0" endvalue="0">
			<missionstate id="0" description="You have recived Demonhunter outfit and addons from The Inquisition Quest"/>
		</mission>		
	</quest>
 
I think you missed the </quest> to close each Quest and at the end </quests>
Try this
Code:
<?xml version="1.0" encoding="UTF-8"?>
<quests>
	<quest name="Pits Of Inferno" startstorageid="320" startstoragevalue="1">
		<mission name="Throneroom of Verminor" storageid="1234564" startvalue="0" endvalue="1">
		<missionstate id="0" description="Throneroom of Verminor is succesfully completed"/>
		</mission>
		<mission name="Throneroom of Infernatil" storageid="1234565" startvalue="0" endvalue="0">
			<missionstate id="0" description="Throneroom of Infernatil is succesfully completed"/>
		</mission>		
		
		<mission name="Throneroom of Apocalypse" storageid="1234563" startvalue="1" endvalue="1">
			<missionstate id="0" description="Throneroom of Apocalypse is succesfully completed"/>
		</mission>

		<mission name="Throneroom of Ashfalor" storageid="1234562" startvalue="1" endvalue="1">
			<missionstate id="0" description="Throneroom of Ashfalor is succesfully completed"/>
		</mission>

		<mission name="Throneroom of Tafariel" storageid="1234561" startvalue="1" endvalue="1">
			<missionstate id="0" description="Throneroom of Tafariel is succesfully completed"/>
		</mission>

		<mission name="Throneroom of Bazir" storageid="1234567" startvalue="0" endvalue="1">
			<missionstate id="0" description="Throneroom of Bazir is succesfully completed"/>
		</mission>

		<mission name="Throneroom of Pumin" storageid="1234566" startvalue="0" endvalue="0">
			<missionstate id="0" description="Throneroom of Pumin is succesfully completed"/>
		</mission>
		</quest>
		<quest name="The Arena" startstorageid="322" startstoragevalue="1">
		<mission name="Greenhorn" storageid="42366" startvalue="0" endvalue="1">
		<missionstate id="0" description="You have succesfully completed Greenhorn level"/>
		</mission>
		<mission name="Scrapper" storageid="42376" startvalue="0" endvalue="0">
			<missionstate id="0" description="You have succesfully completed Scrapper level"/>
		</mission>		
		
		<mission name="Warlord" storageid="42386" startvalue="1" endvalue="1">
			<missionstate id="0" description="You have succesfully completed Warlord level"/>
		</mission>
		</quest>
				<quest name="The Inquisition Quest" startstorageid="323" startstoragevalue="1">
		<mission name="Greenhorn" storageid="42366" startvalue="0" endvalue="1">
		<missionstate id="0" description="You have succesfully completed The Inquisition Quest"/>
		</mission>
		<mission name="Demonhunter outfit" storageid="42376" startvalue="0" endvalue="0">
			<missionstate id="0" description="You have recived Demonhunter outfit and addons from The Inquisition Quest"/>
		</mission>		
	</quest>
</quests>
 
Back
Top