Text won't show up issue - 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: Text won't show up issue (/thread-19951.html) |
Text won't show up issue - reper1210 - 01-16-2013 my note text and door text won't show up. i promise the in game names are correct, i have the openinjournal box checked. <LANGUAGE> <CATEGORY Name="CustomStoryMain"> <Entry Name="Description">Just a script test</Entry> </CATEGORY> <CATERGORY Name="Levels"> <Entry Name="LevelDoor1">This door is locked. A key is required to open it.</Entry> </CATEGORY> <CATEGORY Name="Journal"> <Entry Name="Note_Note01_Name">ehhhhhhhhhhh</Entry> <Entry Name="Note_Note01_Text">ehhhhhhhhhhhh</Entry> </CATEGORY> </LANGUAGE> RE: Text won't show up issue - NaxEla - 01-16-2013 Well first of all, the category for level doors is always "Levels". Also, make sure you put </Entry>, not </ENTRY> like you did here: Code: <Entry Name="LevelDoor1">This door is locked. A key is required to open it.</ENTRY> Lastly, you forgot </LANGUAGE> at the end. RE: Text won't show up issue - reper1210 - 01-16-2013 (01-16-2013, 06:01 AM)NaxEla Wrote: Well first of all, the category for level doors is always "Levels". Also, make sure you put </Entry>, not </ENTRY> like you did here: <LANGUAGE> <CATEGORY Name="CustomStoryMain"> <Entry Name="Description">Just a script test</Entry> </CATEGORY> <CATERGORY Name="Levels"> <Entry Name="LevelDoor1">This door is locked. A key is required to open it.</Entry> </CATEGORY> <CATEGORY Name="Journal"> <Entry Name="Note_Note01_Name">ehhhhhhhhhhh</Entry> <Entry Name="Note_Note01_Text">ehhhhhhhhhhhh</Entry> </CATEGORY> </LANGUAGE> Nothing works still Notetext: Note01 RE: Text won't show up issue - NaxEla - 01-16-2013 You said in your first post that the note and door didn't work. Does the description for your custom story work? Are you sure that your file is named extra_english.lang (not something like extra_english.lang.txt)? Are you sure that you saved the file after modifying it? (you probably did, but just making sure...) RE: Text won't show up issue - reper1210 - 01-16-2013 yeah, i've saved the file, it definitively is called Extra_English.lang and the description text works before you press start game. RE: Text won't show up issue - NaxEla - 01-16-2013 OHHHHH I SEE IT!! You wrote: <LANGUAGE> <CATEGORY Name="CustomStoryMain"> <Entry Name="Description">Just a script test</Entry> </CATEGORY> <CATERGORY Name="Levels"> <Entry Name="LevelDoor1">This door is locked. A key is required to open it.</Entry> </CATEGORY> <CATEGORY Name="Journal"> <Entry Name="Note_Note01_Name">ehhhhhhhhhhh</Entry> <Entry Name="Note_Note01_Text">ehhhhhhhhhhhh</Entry> </CATEGORY> </LANGUAGE> Change to <CATEGORY Name="Levels"> RE: Text won't show up issue - reper1210 - 01-16-2013 OMG thank you! that made the note work, the door still doesn't for some reason. and i also got my character to look at the door properly (even though i don't understand why it works) but thanks for all your help, seriously =) RE: Text won't show up issue - NaxEla - 01-16-2013 (01-16-2013, 06:46 AM)reper1210 Wrote: OMG thank you! that made the note work, the door still doesn't for some reason. and i also got my character to look at the door properly (even though i don't understand why it works) but thanks for all your help, seriously =) No problem. I can't believe it was as simple as that lol RE: Text won't show up issue - reper1210 - 01-16-2013 lmao... actually i re-changed the CATEGORY "Levels" back to LevelDoors and now its works xDDD |