Frictional Games Forum (read-only)
need help with my mod! - 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: need help with my mod! (/thread-19950.html)



need help with my mod! - troll9005 - 01-16-2013

i have been making a mod for amnesia however it is not showing on the custom stories i have tried everything i can find please help!

here is my custom_stories_settings.cfg

<MAIN
Name = "custom story"
Author = "Troll9005"
MapsFolder = "maps/"
StartMap = "00_example.map"
StartPos = "PlayerStartArea_1"
/>

my extra_english.lang
<LANGUAGE>
<CATEGORY Name="CustomStoryMain">
<Entry Name="Description">This is my first custom story! [br][br] hope you enjoy! </Entry>
</CATEGORY>
</LANGUAGE>
and my maps folder
00_example.hps void OnStart()
{
}
and my map is called 00_examplemap.map


RE: need help with my mod! - warmacha11 - 01-18-2013

sometimes the game gets all derped even if you have everything correct, but for starters lets fix your .hps

your script in there should be

void OnStart()
{
}

void OnEnter()
{
}

void OnLeave()
{
}


RE: need help with my mod! - The chaser - 01-18-2013

It's not correct, Warmacha.

.cfg file:

<Main

Name = "custom story"

Author = "Troll9005"

MapsFolder = "maps/"

StartMap = "00_example.map"

StartPos = "PlayerStartArea_1"

/>


RE: need help with my mod! - warmacha11 - 01-18-2013

yeah i guess i didnt look at it carefully... thats why we have people like you Chaser


RE: need help with my mod! - The chaser - 01-18-2013

Yea, .cfg files, .lang, and .hps files are really derpy, I must admit :p
But, when you know how-to do the things, it gets really easy. Wink It's just a matter of patience and observing.