Frictional Games Forum (read-only)

Full Version: extra_english.lang file
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
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 Smile
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>
Try taking out the line that says "//Study Key". Also, you need a </CATEGORY>, and then under that put </LANGUAGE>.
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.
(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 Sad

Any more thoughts?
Did you use notepad++ or just regular notepad ?
(02-28-2013, 12:50 AM)No Author Wrote: [ -> ]Did you use notepad++ or just regular notepad ?

Notepad++
Well, try to use other CS .lang file. Delete all their stuff in the .lang file and add your stuff there.
(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 Smile
Can you please post your whole .lang file? Because if there's just one mistake, the whole .lang file won't work
//Study Key is not valid.
Missing 2 category end tags and missing language end tag.
Pages: 1 2