Frictional Games Forum (read-only)

Full Version: [SOLVED]Help please: map not showing up
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Hi everyone, i am in the making of a custom story for amnesia and i have a little problem.
My "mapname.map" wont show in my folder (maps/mapname.map). But when i open the level editor it shows.
And when i try to open it in game it wont show anything.

Please respond if you know any solution.
Do u have the custom_story_settings.cfg and extra_english.lang in your main story directory?
(11-09-2011, 12:36 PM)Gamemakingdude Wrote: [ -> ]Do u have the custom_story_settings.cfg and extra_english.lang in your main story directory?
Yes, i have all the files i need, with the proper codes inside them.
What's your operating system?
If you want the file to show, just save it to your desktop(if using Windows)
And coz it doesn't show ingame, there might be a typo in your .cfg
(11-09-2011, 01:45 PM)Your Computer Wrote: [ -> ]What's your operating system?
I am using Windows 7 Ultimate Edition.

(11-09-2011, 02:36 PM)Lontasm Wrote: [ -> ]If you want the file to show, just save it to your desktop(if using Windows)
And coz it doesn't show ingame, there might be a typo in your .cfg
Thanks, that helped!
Now i'm just gonna check for spelling errors.
I have now tried everything.. I have spell checked everything twice, i have the i have everything where it's supposed to be.. But still, it wont show up in the Custom Stories section in game..
Post you ".lang" and ".cfg" files here. I can check if there is something wrongSmile
(11-10-2011, 06:56 PM)Unearthlybrutal Wrote: [ -> ]Post you ".lang" and ".cfg" files here. I can check if there is something wrongSmile
Thank you Smile


custom_story_settings.cfg
<Main
Name ="Episode IV: A New NOPE"
Author ="Dennis Falck"
Mapfolder ="maps/"
Startmap ="00_newlife.map"
Startpos ="PlayerStArtarea_1"
/>

------

extra_english.lang
<LANGUAGE>
<CATEGORY NAME="customstorymain">
<ENTRY NAME="description">Nope, nope, nope, nope, nope.</ENTRY>
</CATEGORY>
</LANGUAGE>
-----------

00_newlife.hps
void onstart()
{
}
-----------


Try this to your .cfg file:





<Main
Name="Episode IV: A New NOPE"
Author="Dennis Falck"
ImgFile=""
StartMap="00_newlife.map"
StartPos=""
/>




And this to your .lang file:




<LANGUAGE>
<CATEGORY NAME="CustomStoryMain">
<ENTRY NAME="Description">Nope, nope, nope, nope, nope.</ENTRY>
</CATEGORY>
</LANGUAGE>


Works with that? Smile
Pages: 1 2