Frictional Games Forum (read-only)
Note Text - 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: Note Text (/thread-21556.html)



Note Text - thestormcrow - 05-20-2013

Okay so, I don't know if this is a silly question but, it seems that there is a predefined list of NoteText names you can have - for example, KeyTrap, and Note, they both work and produce the note text in game, but others such as Note1, Journal etc, they don't work and you just get a blank note. Can anyone link me to/specify the list of NoteText names that work?


RE: Note Text - OriginalUsername - 05-20-2013

The names of the note don't matter.
You can have this: Note_NAME_Text
Or Note_ANOTHERNAME_Text
You just have to be sure the names match in the editor.
The name for the note goes like this: Note_NAME_Name
And the text for the note goes like this: Note_NAME_Text

Edit: Ninja'd


RE: Note Text - PutraenusAlivius - 05-20-2013

You can make one. You put it to the Journal category.

It's like this.
Code:
    <Entry Name="Note_NoteExample_Name">Just a note example!</Entry>
    <Entry Name="Note_NoteExample_Text">Just a test!</Entry>
You put the NoteExample thing to the NoteText. Just that.


RE: Note Text - amnesiaplayer321 - 05-21-2013

I dont now its solved but use this tut. :
<CATEGORY Name="Journal">
<Entry Name="Note_yournotename_Name">notetitle</Entry>
<Entry Name="Note_yournotename_Text">notetext</Entry>


//just swap yournotename with your notes name (example note1)
//do this on extra_english.lang
//swap notetitle to your title,note text to note's text
//i use // for not mind it.


RE: Note Text - PutraenusAlivius - 05-21-2013

ATTENTION!!

The // sign DOES NOT work on .lang files.


RE: Note Text - amnesiaplayer321 - 05-21-2013

i already said do not mind // just read it.But thanks for the explaination