Extra_english not working - 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: Extra_english not working (/thread-19568.html) |
Extra_english not working - MisterJ - 12-16-2012 So, my problem is that no matter what I put in extra_english.lang , it never shows up in the game. Case in point, I'm trying to have a message show up when the player reaches a locked door. The in-game script seems fine, but nothing is happening! Help!! <LANGUAGE> <CATEGORY Name="CustomStoryMain"> <Entry Name="Description">in progress.</Entry> </CATEGORY> <CATEGORY Name=“Messages”> <Entry Name =“Stairway Door”>It's far too dark, I'll break my neck on the stairs - Aunt Imelda used to keep a lantern in the cellar.</Entry> </CATEGORY> </LANGUAGE> RE: Extra_english not working - xxxxxxxxxxxxxxxx - 12-16-2012 Hmm...maybe spaces in entry names are not allowed? Just a wild guess, but try changing "Stairway Door" to "StairwayDoor" both in the .lang file and in your ingame scripts. Apart from that I don't see anything wrong...maybe you should post your ingame script too, just to be safe. Use the insert code button to make it easier to read and copy for others! RE: Extra_english not working - MisterJ - 12-16-2012 Hey there, here's my code just to make sure; thanks for the help already! Code: void DoorLockedPlayer(string &in entity) RE: Extra_english not working - FlawlessHappiness - 12-16-2012 Don't use spaces in your Lang when you are writing names of objects and messages... Instead use _ So it will be: "Stairway_Door", or you can just write "StairwayDoor", I don't know if this will solve it, but try RE: Extra_english not working - Your Computer - 12-16-2012 The issue is likely to be the special quotation marks. Special quotation marks are not quotation marks. |