Frictional Games Forum (read-only)
Naming Level Doors - 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: Naming Level Doors (/thread-20803.html)



Naming Level Doors - Hailfiretank - 03-17-2013

I have tried looking, but cannot find any tutorials on this Sad

I wish to 'name' my doors;
aka. When a player looks at a door, the door's name comes up on the screen (eg. the way it says things like "Wine Cellar" and "Laboratory" in the main game)

Any advice would be appreciated Smile


RE: Naming Level Doors - NaxEla - 03-17-2013

Select the door in the level editor, then click on the Entity tab on the right of the screen. Scroll down until you see 'TextEntry'. That's the entry name that you will add in your lang file (Category is always Levels). Then you just need to add that entry into your lang file. For example, if you called your entry "CellarDoor", you're lang would look like this:
Code:
<LANGUAGE>
    <CATEGORY Name="Levels">
        <Entry Name="CellarDoor">Cellar</Entry>
    </CATEGORY>
</LANGUAGE>



RE: Naming Level Doors - Hailfiretank - 03-17-2013

Perfect, thanks! Big Grin