Frictional Games Forum (read-only)
Multiple Notes Help - 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: Multiple Notes Help (/thread-22343.html)



Multiple Notes Help - RedSampson00 - 08-06-2013

Before you read the rest of the thread, I just want to inform you that I am completely new to custom story scripting etc. So please bear that in mind when you read on.
Ok, so I've managed to make one note,
Here's the extra_english.lang file:
<LANGUAGE>
<RESOURCES>
</RESOURCES>
<CATEGORY Name="Journal">
<Entry Name="Note_note1_Name">Test</Entry>
<Entry Name="Note_note1_Text">This is a test.</Entry>
</CATEGORY>
</LANGUAGE>

That worked fine, but how would I make multiple notes? Huh
Thanks in advance.


RE: Multiple Notes Help - ExpectedIdentifier - 08-06-2013

(08-06-2013, 07:47 PM)RedSampson00 Wrote: Before you read the rest of the thread, I just want to inform you that I am completely new to custom story scripting etc. So please bear that in mind when you read on.
Ok, so I've managed to make one note,
Here's the extra_english.lang file:
<LANGUAGE>
<RESOURCES>
</RESOURCES>
<CATEGORY Name="Journal">
<Entry Name="Note_note1_Name">Test</Entry>
<Entry Name="Note_note1_Text">This is a test.</Entry>
</CATEGORY>
</LANGUAGE>

That worked fine, but how would I make multiple notes? Huh
Thanks in advance.

<LANGUAGE>
<RESOURCES>
</RESOURCES>
<CATEGORY Name="Journal">
<Entry Name="Note_note1_Name">Test</Entry>
<Entry Name="Note_note1_Text">This is a test.</Entry>
<Entry Name="Note_note2_Name">Test2</Entry>
<Entry Name="Note_note2_Text">This is also a test.</Entry>
</CATEGORY>
</LANGUAGE>


RE: Multiple Notes Help - RedSampson00 - 08-06-2013

Turns out I did try this except that I made a simple error by naming it note_2 instead of note2. Thanks anyway for helping.