Frictional Games Forum (read-only)

Full Version: HELP IMMEDIATELY!
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey all,

I've a BIG problem! ErrMessage:

FATAL ERROR: Could not load world file 'custom_stories/Junior Members Unite/Maps/.map'

1. what's a world file?
2. I just have 2 maps
first is "start_hub.map"
second is "attic.map"

Did you need my .hps file for the level?

And this err message is just when i'm entering the attic.map
the first is running perfectly!

Please help me quickly!
I think you posted this in the wrong section. You should post it in the Amnesia section.
The game tries to load a map called .map, and it doesn't exist, so the game crashes.

You need to go to the map editor, and edit the attic door to go to attic.map.
(04-29-2012, 07:32 PM)spukrian Wrote: [ -> ]I think you posted this in the wrong section. You should post it in the Amnesia section.

What he does is look for the word "help" in the forum title (apparently any) and believes it is for development support.
No, i don't add a lvldoor i made it this like:

I add a ladder and named it "lad_obj". Then i write in .hps:

SetEntityPlayerInteractCallback("lad_obj", "LadCM_1", true);
...
}


void LadCM_1(string &in asEntity)
{
ChangeMap("attic.map", "PlayerStartArea_1", "any sound.snt", "other sound.snt");
FadeOut(4.4f);
}


is this a problem?
Perhaps use this?
void SetEntityCallbackFunc(string& asName, string& asCallback);

Calls a function when the player interacts with a certain entity.
Callback syntax: void MyFunc(string &in asEntity, string &in type)
Type depends on entity type and includes: “OnPickup”, “Break”, “OnIgnite”, etc

Just a shot in the dark, but the type might be "OnClimb". Not that it's too critical, though.


Disregard this post.