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

[TFS 1.0] Quest log Dont work

samuelav3

Member
Joined
Aug 18, 2014
Messages
95
Reaction score
5
need help when doing a task with grezzly adams or some other quest I have no registered "Quest Log"
help me

 
Did you register it at quests.xml?

Code:
<?xml version="1.0" encoding="UTF-8"?>
<quests>
   <quest name="Example Quest I" startstorageid="1001" startstoragevalue="1">
     <mission name="Example Mission 1" storageid="1001" startvalue="1" endvalue="3">
       <missionstate id="1" description="Example description 1"/>
       <missionstate id="2" description="Example description 2"/>
       <missionstate id="3" description="Example description 3"/>
     </mission>
     <mission name="Example Mission 2" storageid="1001" startvalue="4" endvalue="5">
       <missionstate id="4" description="Example description 1"/>
       <missionstate id="5" description="Example description 2"/>
     </mission>
   </quest>
</quests>
 
Code:
<quest name="Killing in the Name of..." startstorageid="100157" startstoragevalue="1">

    <!-- killing in the name of rank -->
        <mission name="Paw and Fur: Member" storageid="2500" startvalue="0" endvalue="10" description="You are member of the Paw and Fur hunting elite. You currently have |STATE| Paw &amp; Fur points." />
        <mission name="Paw and Fur: Ranger" storageid="2500" startvalue="11" endvalue="20" description="You are Ranger of the Paw and Fur hunting elite. You currently have |STATE| Paw &amp; Fur points." />
        <mission name="Paw and Fur: Big Game Hunter" storageid="2500" startvalue="21" endvalue="40" description="You are Big Game Hunter in the Paw and Fur hunting elite. You currently have |STATE| Paw &amp; Fur points." />
        <mission name="Paw and Fur: Trophy Hunter" storageid="2500" startvalue="41" endvalue="70" description="You are Trophy Hunter in the Paw and Fur hunting elite. You currently have |STATE| Paw &amp; Fur points. Ask Grizzly Adams for 'special task' he might have something for you." />
        <mission name="Paw and Fur: Elite Hunter" storageid="2500" startvalue="71" endvalue="100" description="You have obtained the highest possible rank in the Paw and Fur hunting elite, you are Elite Hunter. You currently have |STATE| Paw &amp; Fur points. Ask Grizzly Adams for 'special task' he might have something for you." />

    <!-- special tasks for killing in the name of -->
        <mission name="Paw and Fur: Tiquandas Revenge" storageid="22555" startvalue="1" endvalue="2">
            <missionstate id="1" description="Grizzly Adams told you that there is Tiquandas Revenge hiding somewhere in the jungle of Port Hope. Go find its hideout and kill it."/>
            <missionstate id="2" description="You have slained the Tiquandas Revenge."/>
        </mission>
        <mission name="Paw and Fur: Demodras" storageid="22556" startvalue="1" endvalue="2">
            <missionstate id="1" description="Grizzly Adams wanted you to go look for Demodras'  hideout. He also mentioned that it might be somewhere under the Plains of Havoc."/>
            <missionstate id="2" description="You have slained the Demodras."/>
        </mission>
 
You have to set the storage value to what it should set in the quest log, it dosen't happen by magic ;o
 
Back
Top