Frictional Games Forum (read-only)

Full Version: Making My Map Work
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
This sounds pretty stupid, but i can't even make my map show in the custom story screen.. Can someone help please? Heart
(12-24-2010, 04:54 PM)CrushedRaiD Wrote: [ -> ]This sounds pretty stupid, but i can't even make my map show in the custom story screen.. Can someone help please? Heart

Have you this file created? custom_story_settings.cfg in your own custom stories folder and like this example writed in there?

<Main
Name = "Map name"
Author = "Who made map"

MapsFolder = "maps/" <- where it belongs
StartMap = "Hotel Enter.map" <- Your map name when you save editor.
StartPos = "PlayerStartArea_1" <- Starting area on your map
/>

and make your map name hps.file this one "Hotel Enter.map <- example my map..

And add these in notepad..

void OnStart()
{
}

voidOnEnter()
{
}

voidOnLeave()
{
}
(12-24-2010, 05:04 PM)HumiliatioN Wrote: [ -> ]
(12-24-2010, 04:54 PM)CrushedRaiD Wrote: [ -> ]This sounds pretty stupid, but i can't even make my map show in the custom story screen.. Can someone help please? Heart

Have you this file created? custom_story_settings.cfg in your own custom stories folder and like this example writed in there?

<Main
Name = "Map name"
Author = "Who made map"

MapsFolder = "maps/" <- where it belongs
StartMap = "Hotel Enter.map" <- Your map name when you save editor.
StartPos = "PlayerStartArea_1" <- Starting area on your map
/>

and make your map name hps.file this one "Hotel Enter.map <- example my map..

And add these in notepad..

void OnStart()
{
}

voidOnEnter()
{
}

voidOnLeave()
{
}
I got it working ty <3333