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

Solved Quest Log

Nerglexo

N E X O
Joined
Dec 31, 2009
Messages
1,120
Reaction score
218
Location
Sweden
Greetings OTLand,

Since I'm not a good scripter at all, I've a problem and can't find out how to make it. How do I do if I want my Quest Log to update with quests you take? I've tried to accept quests but nothing in the Quest Log updates.

I don't know what files or anything to look in so I'm kinda lost.

Thanks.

Kind regards,
Remmacs
 
Solution
this for tfs 1.2
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>
...
give player storage 30031,1 he will get the quest name Example Quest I then for missions give player storage 1001,1 player will done first mission then give player storage 1001,2 player will done Second mission

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>
 
There are different ways but it depends on which tfs version you are using so maybe start with sharing that :)
Then I'll see if I can be of any help.
 
this for tfs 1.2
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>
try set storage to player 1001,1 and 1001,2
 
Solution
this for tfs 1.2
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>
try set storage to player 1001,1 and 1001,2
Problem solved :)
 
Back
Top