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

Lua Quest LoG...

JuanC

New Member
Joined
Sep 24, 2009
Messages
220
Reaction score
3
How i can use the quest log?
To create quest, I only know add chests with actionids... Not more :/
 
You can add quest with the Storage ID

Code:
	<quest name="[COLOR="Red"]QUEST NAME[/COLOR]" startstorageid="[COLOR="Red"]FIRST STORAGE ID[/COLOR]" startstoragevalue="1">
	<mission name="[COLOR="Red"]FIRST MISION NAME[/COLOR]" storageid="[COLOR="Red"]FIRST STORAGE ID[/COLOR]" startvalue="0" endvalue="1">
			<missionstate id="1" description="[COLOR="Red"]DESCRIPTION FIRST MISSION[/COLOR]"/>
	</mission>
	<mission name="[COLOR="Red"]SECOND MISSION NAME[/COLOR]" storageid="[COLOR="Red"]SECOND STORAGE ID[/COLOR]" startvalue="0" endvalue="1">
			<missionstate id="1" description="DESCRIPTION SECOND MISSION"/>
	</mission>
	</quest>
and you can make more missions :p
 
Back
Top