Frictional Games Forum (read-only)

Full Version: Quests suddenly stop working! Confused :(
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
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>
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.
It STILL doesn't work Sad
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>
IT STILL WONT WORK Sad
(06-02-2011, 05:32 PM)X4anco Wrote: [ -> ]IT STILL WONT WORK Sad

It ok Big Grin
Yay Smile Glad you got it working