Frictional Games Forum (read-only)
Quests suddenly stop working! Confused :( - Printable Version

+- Frictional Games Forum (read-only) (https://www.frictionalgames.com/forum)
+-- Forum: Amnesia: The Dark Descent (https://www.frictionalgames.com/forum/forum-6.html)
+--- Forum: Custom Stories, TCs & Mods (https://www.frictionalgames.com/forum/forum-35.html)
+--- Thread: Quests suddenly stop working! Confused :( (/thread-8401.html)



Quests suddenly stop working! Confused :( - X4anco - 06-02-2011

Hello peoples,

I'm trying to put in a quest and I have done it about a million times before and now they stop working can you see where I am going wrong? thx.
Code:
void Function01(string &in asParent, string &in asChild, int alState)
{
    FadeImageTrailTo( 1.0f, 1.0f);
    SetPlayerLookSpeedMul(0.7f);
    AddQuest("questtest","questtest");
}
Code:
<Entry Name="Quest_questtest1_Text">I should follow the blood</Entry>



RE: Quests suddenly stop working! Confused :( - palistov - 06-02-2011

Your entry name referenced in the function does not match the entry's name in your lang file. As far as I know, there is no index for the quests, they are listed in chronological order; the most recently added quests are at the top of the list, while older ones are pushed to the bottom.


RE: Quests suddenly stop working! Confused :( - X4anco - 06-02-2011

It STILL doesn't work Sad


RE: Quests suddenly stop working! Confused :( - palistov - 06-02-2011

Is the quest entry under the Journal category? It should look like this:

<CATEGORY Name="Journal">
<Entry Name="Quest_questtest_Text">I should follow the blood</Entry>
</CATEGORY>


RE: Quests suddenly stop working! Confused :( - X4anco - 06-02-2011

IT STILL WONT WORK Sad
(06-02-2011, 05:32 PM)X4anco Wrote: IT STILL WONT WORK Sad

It ok Big Grin


RE: Quests suddenly stop working! Confused :( - palistov - 06-02-2011

Yay Smile Glad you got it working