Custom Story not showing up in game menu! - 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) +--- Thread: Custom Story not showing up in game menu! (/thread-20048.html) |
Custom Story not showing up in game menu! - DirtyMrHedSic - 01-25-2013 I have found this to be a common problem, and I've done everything that I know to make it work. Custom_story_settings.cfg <Main Imgfile = "" Name = "Tutorial" Author = "Campbell" MapsFolder = "maps/" Startmap = "01_cailen.map" Startpos = "Playerstartarea_1" /> and my extra_english.lang <LANGUAGE> <CATEGORY Name="customstorymain"> <Entry Name="description"> This is a tutorial. </Entry> </CATEGORY> </LANGUAGE> My 01_cailen.Hps is void OnStart() { } void OnEnter() { } void OnLeave() { } I have a custom story downloaded and it works fine, and everything is identical to mine. I am out of ideas, can anyone spot where my mistake is please? Ty! *I can email my map if anyone would care to check it for errors. RE: Custom Story not showing up in game menu! - Adny - 01-25-2013 Make sure your maps folder is called "maps", and the start node is called "PlayerStartArea_1". Oh, and make sure your map is named "01_cailen". That's about all the help I can give on this. Everything you've shown here seems to be in order. RE: Custom Story not showing up in game menu! - DirtyMrHedSic - 01-25-2013 (01-25-2013, 06:29 AM)andyrockin123 Wrote: Make sure your maps folder is called "maps", and the start node is called "PlayerStartArea_1". Oh, and make sure your map is named "01_cailen". That's about all the help I can give on this. All of those are in order. It's driving me insane not knowing what the issue is. Thank you for the reply! RE: Custom Story not showing up in game menu! - FlawlessHappiness - 01-25-2013 You need to make sure they are capitalized in order too. It's not enough that their names are the same, because they are not, if they aren't capitalized the same RE: Custom Story not showing up in game menu! - NaxEla - 01-25-2013 You're forgetting many capitals . <Main ImgFile = "" Name = "Tutorial" Author = "Campbell" MapsFolder = "maps/" StartMap = "01_cailen.map" StartPos = "Playerstartarea_1" /> <LANGUAGE> <CATEGORY Name="CustomStoryMain"> <Entry Name="Description"> This is a tutorial. </Entry> </CATEGORY> </LANGUAGE> RE: Custom Story not showing up in game menu! - DirtyMrHedSic - 01-25-2013 let me try that out bud (01-25-2013, 06:58 AM)NaxEla Wrote: You're forgetting many capitals . That was it, thank you! Got it working. RE: Custom Story not showing up in game menu! - NaxEla - 01-25-2013 No problem, man. I'm glad it's working |