Frictional Games Forum (read-only)
Getting a simple map to 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 - Development (https://www.frictionalgames.com/forum/forum-38.html)
+---- Forum: Development Support (https://www.frictionalgames.com/forum/forum-39.html)
+---- Thread: Getting a simple map to load (/thread-6522.html)

Pages: 1 2 3


RE: Getting a simple map to load - Tanshaydar - 02-10-2011

Oh man...
What you need is here: http://wiki.frictionalgames.com/hpl2/amnesia/custom_story


RE: Getting a simple map to load - Karnio - 02-10-2011

I'm having the exact same problem, I have not only done exactly as people have said to do but I copied and pasted (editing the parts like the map name obviously) the necessary scripts. The map is still not showing up! I'm on a mac, if that makes a difference; since the wiki's contain little to help mac users.


RE: Getting a simple map to load - Demoman Dawkins - 02-10-2011

(02-10-2011, 04:33 PM)junkfood2121 Wrote: Well, here's how I'm doing it.

Make a map in your custom_stories folder. In that folder, create a folder called "maps". Then open notepad and write:

Code:
<Main
    Name="Custom Story Name"
    Author="Author Name"
    ImgFile=""

    StartMap="Name of your .map file (With .map at end, Example: mymap.map)"
    StartPos="A start position for player. Can be left blank"
/>

Save it as "custom_story_settings.cfg" in the folder you made (not "maps")

Then make a new notepad document and write:

Code:
<LANGUAGE>
    <CATEGORY Name="CustomStoryMain">
      <Entry Name="Description">Description of your custom story.</Entry>
    </CATEGORY>
</LANGUAGE>

Save as extra_english.lang (also in your folder)

Then place ur maps & hps files (if you got scripts) in "maps" folder and it should pop up in game.

Righto, done everything there exactly as you said, and yet nothing...

Hate to sound like an idiot, 'cause I'm not.


RE: Getting a simple map to load - Tanshaydar - 02-10-2011

Can you list other custom stories?


RE: Getting a simple map to load - Nye - 02-10-2011

(02-10-2011, 08:32 PM)Tanshaydar Wrote: Can you list other custom stories?

Mine! HERE!


RE: Getting a simple map to load - Karnio - 02-12-2011

(02-10-2011, 09:33 PM)Nye Wrote:
(02-10-2011, 08:32 PM)Tanshaydar Wrote: Can you list other custom stories?

Mine! HERE!

I can list them yes, but not my own.


RE: Getting a simple map to load - Tanshaydar - 02-12-2011

Can you upload your folder? I mean your story in the custom_story folder, which you want it to show up on the list.


RE: Getting a simple map to load - Karnio - 02-14-2011

(02-12-2011, 06:24 AM)Tanshaydar Wrote: Can you upload your folder? I mean your story in the custom_story folder, which you want it to show up on the list.

http://www.easy-share.com/1913859296/WrathChild.zip

I hope that works ok I have little upload experience lol

It's very simple atm since I want to be able to test it before I do anything more.


RE: Getting a simple map to load - Tanshaydar - 02-14-2011

Seems like the problem is your custom_story_settings.cfg file.
I've managed to list it.
Here's what I've changed:
Code:
<Main
    Name = "Wrath Child"
    Author = "Karnio"
    ImgFile = ""
    MapsFolder = "maps/"
    StartMap = "00_wc.map"
    StartPos = "PlayStartArea_1"
/>



RE: Getting a simple map to load - Karnio - 02-14-2011

(02-14-2011, 05:43 AM)Tanshaydar Wrote: Seems like the problem is your custom_story_settings.cfg file.
I've managed to list it.
Here's what I've changed:
Code:
<Main
    Name = "Wrath Child"
    Author = "Karnio"
    ImgFile = ""
    MapsFolder = "maps/"
    StartMap = "00_wc.map"
    StartPos = "PlayStartArea_1"
/>

Thank you thank you thank youuuu! Works perfectly now, I have a lot to learn about this!