![]() |
My Custom Story won't load - 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 (https://www.frictionalgames.com/forum/forum-35.html) +--- Thread: My Custom Story won't load (/thread-53920.html) |
My Custom Story won't load - GhostlyEcho - 10-19-2017 I'm working on a Custom Story. I have added a monster, and to see if it's following its path, I want to test my game, but it won't show in among the Custom Story list in Amnesia when starting the game. Can someone please help me? ![]() RE: My Custom Story won't load - Romulator - 10-20-2017 Have you got a custom_story_settings.cfg file in your Custom Story's folder? If not, have a look at the Wrapping up your Custom Story page on the wiki, specifically Step 3, to make one so that your story shows up in the Custom Story list. ![]() Make sure also to include the custom_stories directory at the end of your resources.cfg file, which can be found in the same folder as Amnesia.exe. Code: <Directory Path="/custom_stories" AddSubDirs="true" /> RE: My Custom Story won't load - GhostlyEcho - 10-23-2017 (10-20-2017, 01:49 AM)Romulator Wrote: Have you got a custom_story_settings.cfg file in your Custom Story's folder? Hello. ![]() Sorry for the late reply. I have the custom_story_settings.cfg file inside my custom story folder called Halloween CS (a new project). How do I include the custom story directory? Sorry if my question is stupid, I'm new to modding. ![]() Thank you. RE: My Custom Story won't load - Romulator - 10-24-2017 Nah, it's no problem ![]()
If the CS still doesn't appear in Amnesia's menu, can you post the contents of your custom_story_settings.cfg ? If there is anything wrong, it must be that, unless you don't have a map for your custom story ![]() RE: My Custom Story won't load - GhostlyEcho - 10-24-2017 You mean like this? <Resources> <Directory Path="/_temp" AddSubDirs="true" /> <Directory Path="/fonts" AddSubDirs="false" /> <Directory Path="/maps" AddSubDirs="true" /> <Directory Path="/textures" AddSubDirs="true" /> <Directory Path="/models" AddSubDirs="true" /> <Directory Path="/gui" AddSubDirs="true" /> <Directory Path="/static_objects" AddSubDirs="true" /> <Directory Path="/sounds" AddSubDirs="true" /> <Directory Path="/main_menu" AddSubDirs="true" /> <Directory Path="/shaders" AddSubDirs="true" /> <Directory Path="/lights" AddSubDirs="true" /> <Directory Path="/billboards" AddSubDirs="true" /> <Directory Path="/entities" AddSubDirs="true" /> <Directory Path="/graphics" AddSubDirs="true" /> <Directory Path="/viewer" AddSubDirs="true" /> <Directory Path="/particles" AddSubDirs="true" /> <Directory Path="/models" AddSubDirs="true" /> <Directory Path="/music" AddSubDirs="true" /> <Directory Path="/flashbacks" AddSubDirs="true" /> <Directory Path="/textures" AddSubDirs="true" /> <Directory Path="/misc" AddSubDirs="true" /> <Directory Path="/commentary" AddSubDirs="true" /> <Directory Path="/custom_stories" AddSubDirs="true" /> </Resources> Is this right? ![]() RE: My Custom Story won't load - Mudbill - 10-24-2017 That's the resources.cfg file, not the custom_story_settings.cfg. RE: My Custom Story won't load - GhostlyEcho - 10-24-2017 (10-24-2017, 01:40 PM)Mudbill Wrote: That's the resources.cfg file, not the custom_story_settings.cfg. I thought I had done it right. But I'm still new at this... OK, Custom Story is there now, but it chokes the PC when I try to open and run it. RE: My Custom Story won't load - Romulator - 10-24-2017 Does the game show an error at all? Like, if there is an issue with your map's .hps (script) file? If so, you'll be given a line and a position where there is an error. For example: ERROR (34, 2) Missing } would imply that a closing brace may be missing at Line 34, character 2. If not, you should find and post the hpl.log file after it chokes the PC ![]() https://www.frictionalgames.com/forum/thread-3754.html RE: My Custom Story won't load - GhostlyEcho - 10-24-2017 (10-24-2017, 03:04 PM)Romulator Wrote: Does the game show an error at all? Like, if there is an issue with your map's .hps (script) file? If so, you'll be given a line and a position where there is an error. For example: ERROR (34, 2) Missing } would imply that a closing brace may be missing at Line 34, character 2. Thank you. ![]() Well, after I clicked to open my Custom Story, the menu just freezes, and nothing happens. I had to force the PC to get out of Steam, by clicking the "Windows"-button. RE: My Custom Story won't load - Romulator - 10-24-2017 In that case, definitely post the hpl.log file! Something is amiss, but from that, I cannot exactly tell what, though the log file should definitely point us in the right direction ![]() |