extra_english.lang file - 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.lang file (/thread-20543.html) Pages:
1
2
|
extra_english.lang file - aerialproductions - 02-27-2013 Hello, It seems a lot of people have issues with this file, I've gone through a few threads and looked at problems people had and made sure mine was correct, but it's still not working.. Nothing actually works in game. Its probably something stupid, but I mean I've looked at other peoples scripts and mine isn't really that different. Its in my custom story folder, and it is a .LANG, so I'm assuming I've scripted something wrong! Please help me out Thanks! Script <LANGUAGE> <CATEGORY Name="CustomStoryMain"> <Entry Name="Description">This is Alyssa's story...</Entry> </CATEGORY> <CATEGORY Name="Levels"> <Entry Name="intro">Path to Ashenworth</Entry> <Entry Name="level1">Lower Mansion</Entry> <Entry Name="level2">Dungeon</Entry> <Entry Name="level3">Upper Mansion</Entry> </CATEGORY> <CATEGORY Name="Inventory"> //Study Key <Entry Name="ItemName_key_tomb_rusty_1">Mansion Key</Entry> <Entry Name="ItemDesc_key_tomb_rusty_1">Key used to unlock the side enterance of the mansion.</Entry> <Entry Name="ItemName_crowbar_1">Crowbar</Entry> <Entry Name="ItemDesc_crowbar_1">Can be used to pry open doors.</Entry> <Entry Name="ItemName_crowbar_2">Crowbar</Entry> <Entry Name="ItemDesc_crowbar_2">Can be used to pry open doors.</Entry> <Entry Name="ItemName_crowbar_3">Crowbar</Entry> <Entry Name="ItemDesc_crowbar_3">Can be used to pry open doors.</Entry> <Entry Name="ItemName_crowbar_4">Crowbar</Entry> <Entry Name="ItemDesc_crowbar_4">Can be used to pry open doors.</Entry> <CATEGORY Name="Journal"> <Entry Name="Note_letter_alexanders_room_Name">Letter to my Son</Entry> <Entry Name="Note_letter_alexanders_room_Text">Alexander[br][br]Hopefully this reaches you,</Entry> RE: extra_english.lang file - NaxEla - 02-28-2013 Try taking out the line that says "//Study Key". Also, you need a </CATEGORY>, and then under that put </LANGUAGE>. RE: extra_english.lang file - thetastyfish - 02-28-2013 I'm new to this, but I think your problem is that you need to put: </CATEGORY> after your Inventory category and Journal category. Like, how you have your Levels and Language set up. I hope this helps! (02-28-2013, 12:25 AM)NaxEla Wrote: Try taking out the line that says "//Study Key". Also, you need a </CATEGORY>, and then under that put </LANGUAGE>. Haha, sorry, I guess you beat me to it. RE: extra_english.lang file - aerialproductions - 02-28-2013 (02-28-2013, 12:25 AM)NaxEla Wrote: Try taking out the line that says "//Study Key". Also, you need a </CATEGORY>, and then under that put </LANGUAGE>. I took out the //Study key and nothing happened. there is a </LANGUAGE> as well, I just didn't link the whole script because the last part was just the credits, and </CATEGORY> got added too but didn't change anything Any more thoughts? RE: extra_english.lang file - No Author - 02-28-2013 Did you use notepad++ or just regular notepad ? RE: extra_english.lang file - aerialproductions - 02-28-2013 (02-28-2013, 12:50 AM)No Author Wrote: Did you use notepad++ or just regular notepad ? Notepad++ RE: extra_english.lang file - No Author - 02-28-2013 Well, try to use other CS .lang file. Delete all their stuff in the .lang file and add your stuff there. RE: extra_english.lang file - aerialproductions - 02-28-2013 (02-28-2013, 01:04 AM)No Author Wrote: Well, try to use other CS .lang file. Delete all their stuff in the .lang file and add your stuff there. If you mean make a new one and put the same stuff in it, I've tried that. If you mean use a different program, I'll give that a go, Should I try just notepad? Thanks for your help RE: extra_english.lang file - NaxEla - 02-28-2013 Can you please post your whole .lang file? Because if there's just one mistake, the whole .lang file won't work RE: extra_english.lang file - MulleDK19 - 02-28-2013 //Study Key is not valid. Missing 2 category end tags and missing language end tag. |