Frictional Games Forum (read-only)

Full Version: need help with my mod!
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
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
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()
{
}
It's not correct, Warmacha.

.cfg file:

<Main

Name = "custom story"

Author = "Troll9005"

MapsFolder = "maps/"

StartMap = "00_example.map"

StartPos = "PlayerStartArea_1"

/>
yeah i guess i didnt look at it carefully... thats why we have people like you Chaser
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.