Frictional Games Forum (read-only)
My custom story wont appear in the game! Help - 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: My custom story wont appear in the game! Help (/thread-21963.html)

Pages: 1 2


My custom story wont appear in the game! Help - mrburritos31 - 06-29-2013

Ok so i've been working on a custom story and I did everything right but it wont appear in the custom stories section of my amnesia PLEASE HELP Thanks


RE: My custom story wont appear in the game! Help - PutraenusAlivius - 06-29-2013

Give us your custom_story_settings.cfg file please.


RE: My custom story wont appear in the game! Help - OriginalUsername - 06-29-2013

I've had a glitch like this. I just went to change profile > select your name > ok.
It's probably not the same thing though..


RE: My custom story wont appear in the game! Help - mrburritos31 - 07-01-2013

Here is my custom story cfg file


RE: My custom story wont appear in the game! Help - Statyk - 07-02-2013

Close off the author line with a "


RE: My custom story wont appear in the game! Help - mrburritos31 - 07-03-2013

(07-02-2013, 06:20 AM)Statyk Wrote: Close off the author line with a "
Thanks for telling me that! But it still isnt working! :0 I dont know what i did wrong

(06-29-2013, 08:40 AM)JustAnotherPlayer Wrote: Give us your custom_story_settings.cfg file please.

I posted my cfg File now


RE: My custom story wont appear in the game! Help - Zatchie - 07-03-2013

Maybe you wrote something wrong in the lang file?


RE: My custom story wont appear in the game! Help - User01 - 07-03-2013

Try this, just replace it:

PHP Code:
<Main 
    ImgFile 
"story.jpg" 
    
Name "Amnesia Fading Away" 
    
Author "BurritozCrafterMC" 
    
    
MapsFolder "maps/" 
    
StartMap "01.map" 
    
StartPos "PlayerStartArea_1" 
/> 



RE: My custom story wont appear in the game! Help - mrburritos31 - 07-03-2013

(07-03-2013, 06:07 PM)Zatchie Wrote: Maybe you wrote something wrong in the lang file?

Here is my lang file:

<CATEGORY Name="CustomStoryMain">
<Entry> Name="Description">You are Captain Flan Johnson and the last thing you remember is getting torn off your ship with the your last memory fading away....</Entry>
</CATEGORY>


RE: My custom story wont appear in the game! Help - PutraenusAlivius - 07-04-2013

(07-03-2013, 07:05 PM)mrburritos31 Wrote:
(07-03-2013, 06:07 PM)Zatchie Wrote: Maybe you wrote something wrong in the lang file?

Here is my lang file:

<CATEGORY Name="CustomStoryMain">
<Entry> Name="Description">You are Captain Flan Johnson and the last thing you remember is getting torn off your ship with the your last memory fading away....</Entry>
</CATEGORY>

No wonder. You need <LANGUAGE> tags and the Entry opening is wrong.

Should of been like this.
Code:
<LANGUAGE>
<CATEGORY Name="CustomStoryMain">
<Entry Name="Description">You are Captain Flan Johnson and the last thing you remember is getting torn off your ship with your last memory fading away....</Entry>
</CATEGORY>
</LANGUAGE>

NOTE: Make sure every category is before the </LANGUAGE> tag or it will be messed up.