Frictional Games Forum (read-only)

Full Version: Multiple Notes Help
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
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.
(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>
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.