Frictional Games Forum (read-only)
Nothing working in extra_english.lang - 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: Nothing working in extra_english.lang (/thread-20878.html)



Nothing working in extra_english.lang - megsb927 - 03-23-2013

Everything I put in there isn't showing up in the game like the doors don't say locked, and when I pick up a key it won't show the key name or what it's for it just says picked up. Is it a problem with the way it's set up? the first two categories worked and then the others didn't.

<LANGUAGE>
<RESOURCES>
</RESOURCES>
<CATEGORY Name="CustomStoryMain">
<Entry Name="Description">Test of description story still in progress</Entry>
</CATEGORY>
<CATEGORY Name="Inventory">
<Entry Name="ItemName_Key">Key</Entry>
<Entry Name="ItemDesc_Key">Unlocks door in this level</Entry>
</CATEGORY>
<CATEGORY Name="Inventory">
<Entry Name="ItemName_Key2">Key</Entry>
<Entry Name="ItemDesc_Key2">Unlocks door in this room</Entry>
</CATEGORY>
<CATEGORY Name="LevelDoors">
<Entry Name="LevelDoor1">Locked.</Entry>
</CATEGORY>
<CATEGORY Name="LevelDoors">
<Entry Name="LevelDoor2">Locked.</Entry>
</CATEGORY>
<CATEGORY Name="Inventory">
<Entry Name=ItemName_Key3">Key</Entry>
<Entry Name="ItemDesc_Key3">Opens sewer passage way</Entry>
</CATEGORY>
</LANGUAGE>


RE: Nothing working in extra_english.lang - Lizard - 03-23-2013

you dont need to have multible categories with the same name.

You only need one inventory and one LevelsDoor category.

LevelDoors should Levels not LevelDoors

try do it like this:

<LANGUAGE>
<RESOURCES>
</RESOURCES>
<CATEGORY Name="CustomStoryMain">
<Entry Name="Description">Test of description story still in progress</Entry>
</CATEGORY>
<CATEGORY Name="Inventory">
<Entry Name="ItemName_Key">Key</Entry>
<Entry Name="ItemDesc_Key">Unlocks door in this level</Entry>
<Entry Name="ItemName_Key2">Key</Entry>
<Entry Name="ItemDesc_Key2">Unlocks door in this room</Entry>
<Entry Name="ItemName_Key3">Key</Entry>
<Entry Name="ItemDesc_Key3">Opens sewer passage way</Entry>
</CATEGORY>
<CATEGORY Name="Levels">
<Entry Name="LevelDoor1">Locked.</Entry>
<Entry Name="LevelDoor2">Locked.</Entry>
</CATEGORY>
</LANGUAGE>


RE: Nothing working in extra_english.lang - megsb927 - 03-23-2013

(03-23-2013, 01:54 PM)ZereboO Wrote: you dont need to have multible categories with the same name.

You only need one inventory and one LevelsDoor category.

LevelDoors should Levels not LevelDoors

try do it like this:

<LANGUAGE>
<RESOURCES>
</RESOURCES>
<CATEGORY Name="CustomStoryMain">
<Entry Name="Description">Test of description story still in progress</Entry>
</CATEGORY>
<CATEGORY Name="Inventory">
<Entry Name="ItemName_Key">Key</Entry>
<Entry Name="ItemDesc_Key">Unlocks door in this level</Entry>
<Entry Name="ItemName_Key2">Key</Entry>
<Entry Name="ItemDesc_Key2">Unlocks door in this room</Entry>
<Entry Name="ItemName_Key3">Key</Entry>
<Entry Name="ItemDesc_Key3">Opens sewer passage way</Entry>
</CATEGORY>
<CATEGORY Name="Levels">
<Entry Name="LevelDoor1">Locked.</Entry>
<Entry Name="LevelDoor2">Locked.</Entry>
</CATEGORY>
</LANGUAGE>

This worked thank you so much