Frictional Games Forum (read-only)

Full Version: No Author and Description at my Custom Story
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
i need help on my Custom Story...

Whenever i play my Custom Story "Fearless"..
There is no Description and Author..

Please help me.. I will +Rep you if you helped me Big Grin
Post your extra_english.lang file please. This is most likely where the error will be found.
(03-27-2014, 09:42 AM)Wapez Wrote: [ -> ]Post your extra_english.lang file please. This is most likely where the error will be found.

Sori... But it's on my other computer. it's not On ...
You can just tell me why my Description and Author did not show up..
Please, Thank you
Because there's a problem in your custom story, and I won't know what that problem is until you let me go through your scripts and files. No one here will be able to help you if you don't have access to your folders.
(03-27-2014, 09:47 AM)Wapez Wrote: [ -> ]Because there's a problem in your custom story, and I won't know what that problem is until you let me go through your scripts and files. No one here will be able to help you if you don't have access to your folders.

<LANGUAGE>
<CATEGORY Name="CustomStoryMain">
<Entry Name="Description">My First Custom Story.</Entry>
</CATEGORY>
</LANGUAGE>

this is the exact script on my file... i remember it....
If that's all you have, I don't think the problem lies there. Is the file a clean .lang file and not .lang.txt? If you have hidden extensions, that can be the case if you made the file yourself. Also, is it located in your story's folder, next to your .cfg and map folder?

PS: The author is defined in your custom_story_settings.cfg file. Just open it and add it.
(03-27-2014, 02:38 PM)Mudbill Wrote: [ -> ]If that's all you have, I don't think the problem lies there. Is the file a clean .lang file and not .lang.txt? If you have hidden extensions, that can be the case if you made the file yourself. Also, is it located in your story's folder, next to your .cfg and map folder?

PS: The author is defined in your custom_story_settings.cfg file. Just open it and add it.

Okay i understand would you fix this problem now ?
.Lang file
<LANGUAGE>



<CATEGORY Name="CustomStoryMain">
<Entry Name="Description">You Are a guy who's working as a Janitor in A Mansion
Where you woke up alone at 6:30 AM. You discovered that there are monster inside
and they don't want you to leave the Mansion. Find A Way to Leave the House without dying.</Entry>
</CATEGORY>

The Title and author won't show up, it says "No Description".
CFG file
<Main
Name = "Fearless"
Author = "ZIEGMEBALLEN"

MapsFolder = "maps/"
StartMap = "01_JanitorRoom.map"
StartPos = "PlayerStartArea_1"
/>
This looks just fine to me. I'm guessing you just forgot the </LANGUAGE> at the end of your lang since you had it before.

I think the problem is outside the file itself. How is your story set up? File locations and names.extensions etc.
(03-27-2014, 02:50 PM)Mudbill Wrote: [ -> ]This looks just fine to me. I'm guessing you just forgot the </LANGUAGE> at the end of your lang since you had it before.

I think the problem is outside the file itself. How is your story set up? File locations and names.extensions etc.

Still not working, the Title and Author appear but the description is not there..
<LANGUAGE>



<CATEGORY Name="CustomStoryMain">
<Entry Name="Description">You Are a guy who's working as a Janitor in A Mansion
Where you woke up alone at 6:30 AM. You discovered that there are monster inside
and they don't want you to leave the Mansion. Find A Way to Leave the House without dying.</Entry>
</CATEGORY>


<CATEGORY Name="Journal">

<Entry Name="Note_A1_Name">Discovering</Entry>
<Entry Name="Note_A1_Text">I Woke up at 6:30 where i discovered that i'm alone.[br][br]I Need to Get out of the house, but... [br][br] I Also discovered something...There...Are....Monsters inside. I Need To Leave now and Get help as i am going to die in this house.. [br][br]Is this my last momnet ? God help Me, i don't know what i should do..[br][br][br][br][br]Sincerely.[br]Unknown</Entry>

</CATEGORY>

<CATEGORY Name="Inventory">

<Entry Name="ItemName_Corridorkey_1">Hall Key
<Entry Name="ItemDesc_Corridorkey_1">A Key to the Hall

</CATEGORY>

<CATEGORY Name="Levels">
<Entry Name="LevelDoor1">To Hall

</CATEGORY>

<CATEGORY Name=Locked door">
<Entry Name="LevelDoor1">Door Locked</Entry>
<Entry Name="LevelDoor2">Door to Janitor's Room</Entry>

</CATEGORY>

</LANGUAGE>
Ah, I see. You didn't post your whole file. Keep in mind that a single error in the lang file will cause all the text in your game to remain blank.

You're missing quite a few </Entry> tags here. Remember that every time you do <Entry Name=""> you NEED to have a </Entry> tag after it. You're missing 2 in the Inventory category and 1 in the Levels category. Add them after your text.

PHP Code:
<CATEGORY Name="Inventory">
    <
Entry Name="ItemName_Corridorkey_1">Hall Key</Entry>
    <
Entry Name="ItemDesc_Corridorkey_1">A Key to the Hall</Entry>
</
CATEGORY>

<
CATEGORY Name="Levels">
    <
Entry Name="LevelDoor1">To Hall</Entry>
</
CATEGORY
Pages: 1 2