• 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.xml

John3971

Creator of Solvera
Joined
Aug 23, 2007
Messages
174
Reaction score
1
Location
Sweden
How does that quest works?
does anyone have a tutorial??
its stands like this:

Code:
<?xml version="1.0" encoding="UTF-8"?>
<quests>
	<quest name="Example Quest I" startstorageid="30031" startstoragevalue="1">
		<mission name="The head of Kiper" storageid="1001" startvalue="1" endvalue="3">
			<missionstate id="1" description="Kill Kiper!"/>
			<missionstate id="2" description="Give his head to Talaturen!"/>
			<missionstate id="3" description="Take the medal you got from Talaturen to Ruly!"/>
		</mission>
		<mission name="Ruly's Revenge" storageid="30031" startvalue="4" endvalue="6">
			<missionstate id="4" description="You received a document with instructions from Ruly, follow them."/>
			<missionstate id="5" description="Go back to Ruly and tell him that you followed his instructions to the end."/>
			<missionstate id="6" description="You got a reward from Ruly, he was very thankful with that you helped him to take his revenge."/>
		</mission>
	</quest>
</quests>
 
How does that quest works?
does anyone have a tutorial??
its stands like this:

Code:
<?xml version="1.0" encoding="UTF-8"?>
<quests>
	<quest name="Example Quest I" startstorageid="30031" startstoragevalue="1">
		<mission name="The head of Kiper" storageid="1001" startvalue="1" endvalue="3">
			<missionstate id="1" description="Kill Kiper!"/>
			<missionstate id="2" description="Give his head to Talaturen!"/>
			<missionstate id="3" description="Take the medal you got from Talaturen to Ruly!"/>
		</mission>
		<mission name="Ruly's Revenge" storageid="30031" startvalue="4" endvalue="6">
			<missionstate id="4" description="You received a document with instructions from Ruly, follow them."/>
			<missionstate id="5" description="Go back to Ruly and tell him that you followed his instructions to the end."/>
			<missionstate id="6" description="You got a reward from Ruly, he was very thankful with that you helped him to take his revenge."/>
		</mission>
	</quest>
</quests>

First of all u have defined <quests> secondly u started a quest with line <quest> next u have missions in this quest :) for example here u have 2 missions both are on storageid for example 30031 :) now u have misionstates it shows about % of complited quest and it is shown in storage walues also :p as 30031,1 next state 30031,2 and its all:p
 
Back
Top Bottom