Frictional Games Forum (read-only)

Full Version: Note Text
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
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?
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
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.
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.
ATTENTION!!

The // sign DOES NOT work on .lang files.
i already said do not mind // just read it.But thanks for the explaination