Frictional Games Forum (read-only)
My custom story wont appear :( - 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 :( (/thread-18625.html)



My custom story wont appear :( - Tartarus - 10-04-2012

I can't seem to get my custom story to work. I was hoping someone can download the folder and see what needs to be added or removed to get it to work, thanks!


RE: My custom story wont appear :( - Ongka - 10-04-2012

Is your story in a subfolder? If not, you have to create one. For example YourStory\maps\xyz.map and put the .cfg files in YourStory. The .cfg file seems to be alright.
You may also try to rename the <main at the beginning of the .cfg to <Main


RE: My custom story wont appear :( - The chaser - 10-04-2012

.cfg files are very glitchy. Maybe this helps:

Code:
<Main
Name="A cannon story"
Author="The chaser"
ImgFile="Hope this example helps.jpg"  

StartMap="Dolan's_terror_house.map"
StartPos="whateverthestartis"  
/>


Just edit the content inside the "" and see what happens. If doesn't work, check the same names.


RE: My custom story wont appear :( - Robby - 10-04-2012

The ImgFile line can be simply blank. Only fill it in if you use images.

Looking at the cfg file, it should be 100% correct.


RE: My custom story wont appear :( - Adny - 10-04-2012

2 Major issues:


<Main
Name = "Test Story"
Author = "MMan"
ImgFile = "story.png"
MapsFolder = "maps/"
StartMap = "00_TestMaps.map"
StartPos = "PlayerStartArea_1"
/>


-"M" of Main needs to be capitilized.


<LANGUAGE>
<CATEGORY Name="customstorymain">
<Entry Name="Description">Testing a story. Thank you for playing.</Entry>
</CATEGORY>
</LANGUAGE>


-"N" in the 1st Category Name needs to be capitlized.

Hope that helped!


RE: My custom story wont appear :( - Tartarus - 10-04-2012

Alright thanks guys for the responses I really appreciate it.