• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

QuestLog - How to add to chest?

neutral90

New Member
Joined
Oct 31, 2025
Messages
28
Reaction score
2
Hello, after adding this entry to Quests.xml, there is no Questlog update in the game, what am I doing wrong?
I see the text "Your questlog has been updated." but there is actually nothing on that list.

desert.webp

XML:
    <quest name="Desert Dungeon Quest" startstorageid="3901" startstoragevalue="1">
            <mission name="Reward Chest" storageid="9159" startvalue="1" endvalue="1">
            <missionstate id="1" description="You were rewarded with Ankh, Magic Light Wand, Ring of Healing, Protection Amulet." />
        </mission>
        <mission name="Reward Chest" storageid="9158" startvalue="1" endvalue="1">
            <missionstate id="1" description="You were rewarded with 100 Platinum Coins." />
        </mission>
    </quest>
 
Your startvalue shouldn't be same as endvalue.
Change startvalue to 0 (as all values are -1, it still will not be seen in questlog until its completed) and endvalue same as the storage value given to player on use.
Check the example of questlog in basic tfs, e.g. here
 
Back
Top