Frictional Games Forum (read-only)
Why my Note doesn't work ? - 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 - Development (https://www.frictionalgames.com/forum/forum-38.html)
+---- Forum: Development Support (https://www.frictionalgames.com/forum/forum-39.html)
+---- Thread: Why my Note doesn't work ? (/thread-25465.html)

Pages: 1 2 3


Why my Note doesn't work ? - Amnesiaplayer - 06-11-2014

Why my Note doesn't work ?!

English thing is this.

LANGUAGE>
<CATEGORY Name="CustomStoryMain">
<Entry Name="Description">My First Custom story! Play it like a boss!! Custom story With TOOMANY JUMPSCARES!</Entry>
</CATEGORY>
<CATEGORY Name="Inventory">
<Entry Name="ItemDesc_badkey">Key To (try) Escape</Entry>
<Entry Name="ItemName_badkey">Key to (try) Escape</Entry>
Name="Inventory">
<Entry Name="ItemDesc_key">Freakingducksface</Entry>
<Entry Name="ItemName_key">Freakingducksface</Entry>
</CATEGORY>

<CATEGORY Name="Journal">
<Entry Name="Note_note1_Name">Mysterion of The Statue</Entry>
<Entry Name="Note_note1_Text">Hello.[br][br][br]You don't know me, but I certaintly know you. And you can't find the hidden Statue!</Entry>
</CATEGORY>
</LANGUAGE>

Please help me |Sad
note is empty!


RE: Why my Note doesn't work ? - DnALANGE - 06-11-2014

Name="Inventory"> Thats wrong there. Shouldnt be there..
IF you want the INVENTORY catagory take a look at mine.
PHP Code:
</CATEGORY>

<
CATEGORY Name="Inventory">
  <
Entry Name="ItemName_ElevatordoorKey">a second floor key</Entry
  <
Entry Name="ItemDesc_ElevatordoorKey">This is the key for the second floor.</Entry

 </
CATEGORY



RE: Why my Note doesn't work ? - Amnesiaplayer - 06-11-2014

i think that isn't the problem right now... because both the keys work! perfectly Wink
may this Inventory sotp my way for note ?


RE: Why my Note doesn't work ? - DnALANGE - 06-11-2014

Is the (name) of the note called : note1
What i meant is : go to your note in the leveleditor -> go to ENTITIE TAB -> Notetext put there -> note1


RE: Why my Note doesn't work ? - Amnesiaplayer - 06-11-2014

Yes it's called note1
Tongue


RE: Why my Note doesn't work ? - DnALANGE - 06-11-2014

This should also be removed iirc : Name="Inventory">
Make it at least : <CATEGORY Name="Inventory">


RE: Why my Note doesn't work ? - Amnesiaplayer - 06-11-2014

I really didn't understand this...?
i have the same you said... <CATEGORY Name="Inventory">


RE: Why my Note doesn't work ? - DnALANGE - 06-11-2014

<Entry Name="ItemName_badkey">Key to (try) Escape</Entry>
[u]Name="Inventory">[/u] <<<--- Remove this!!! that;'s what i ment.
<Entry Name="ItemDesc_key">Freakingducksface</Entry>


RE: Why my Note doesn't work ? - Amnesiaplayer - 06-11-2014

ow.. like this =

<LANGUAGE>
<CATEGORY Name="CustomStoryMain">
<Entry Name="Description">My First Custom story! Play it like a boss!! Custom story With TOOMANY JUMPSCARES!</Entry>
</CATEGORY>
<CATEGORY Name="Inventory">
<Entry Name="ItemDesc_badkey">Key To (try) Escape</Entry>
<Entry Name="ItemName_badkey">Key to (try) Escape</Entry>

<Entry Name="ItemDesc_key">Freakingducksface</Entry>
<Entry Name="ItemName_key">Freakingducksface</Entry>
</CATEGORY>

<CATEGORY Name="Journal">
<Entry Name="Note_note1_Name">Note from Stranger</Entry>
<Entry Name="Note_note1_Text">Hello.[br][br][br]You don't know me, but I certaintly know you.</Entry>
</CATEGORY>
</LANGUAGE>


RE: Why my Note doesn't work ? - DnALANGE - 06-11-2014

Yes that is better!
Does it work now?