Frictional Games Forum (read-only)

Full Version: Adding Notes to Game Broke .Lang File
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,
I Recently went about adding notes to my amnesia level but once i did the whole .lang file stopped working.and i don't know why. here is part of my .lang file. the "Journal" category is what is breaking it and i don't know why?

<LANGUAGE>
<CATEGORY Name="CustomStoryMain">
<Entry Name="Description">
You are inside this old house.
</Entry>
<CATEGORY Name="Journal">
<Entry Name="Note_notea_Name">Maids Final Words</Entry>
<Entry Name="Note_notea_Text">To Whom It May Concern [br][br] If you Are Reading This then I am Definately Dead[br]Something Has Murdered Everyone In The House and Now Its Coming For Me.[br]Oh No Its Found Me, Tell My Son I Love Him</Entry>
</CATEGORY>
<CATEGORY Name="Levels">
<Entry Name="leveloneexit">
2nd Floor
</Entry>
</CATEGORY>
</LANGUAGE>

Any Help Would Be AppriciatedWink
You forgot to close the CustomStoryMain category.
<LANGUAGE>
<CATEGORY Name="CustomStoryMain">
<Entry Name="Description">
You are inside this old house.
</CATEGORY>

</Entry>
<CATEGORY Name="Journal">
<Entry Name="Note_notea_Name">Maids Final Words</Entry>
<Entry Name="Note_notea_Text">To Whom It May Concern [br][br] If you Are Reading This then I am Definately Dead[br]Something Has Murdered Everyone In The House and Now Its Coming For Me.[br]Oh No Its Found Me, Tell My Son I Love Him</Entry>
</CATEGORY>
<CATEGORY Name="Levels">
<Entry Name="leveloneexit">
2nd Floor
</Entry>
</CATEGORY>
</LANGUAGE>

With out the spance though and it should work.
space*
(02-03-2012, 09:45 PM)trollox Wrote: [ -> ]With out the spance though and it should work.

That won't work.
(02-03-2012, 09:45 PM)trollox Wrote: [ -> ]<LANGUAGE>
<CATEGORY Name="CustomStoryMain">
<Entry Name="Description">
You are inside this old house.
</CATEGORY>

</Entry>
<CATEGORY Name="Journal">
<Entry Name="Note_notea_Name">Maids Final Words</Entry>
<Entry Name="Note_notea_Text">To Whom It May Concern [br][br] If you Are Reading This then I am Definately Dead[br]Something Has Murdered Everyone In The House and Now Its Coming For Me.[br]Oh No Its Found Me, Tell My Son I Love Him</Entry>
</CATEGORY>
<CATEGORY Name="Levels">
<Entry Name="leveloneexit">
2nd Floor
</Entry>
</CATEGORY>
</LANGUAGE>

With out the spance though and it should work.
space*
Thanks It WorkedBig Grin I am Such a Stupid Noob!