Facebook Twitter YouTube Frictional Games | Forum | Privacy Policy | Dev Blog | Dev Wiki | Support | Gametee


Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
URGENT Map not starting
ObsidianLegion Offline
Member

Posts: 173
Threads: 53
Joined: Jun 2011
Reputation: 0
#1
URGENT Map not starting

My map won't load. It doesn't come up with ANY errors. It just crashes.
It can't be the size of the map. I've played over 1mb maps and mine's only 517kb

Please help!Huh

Is it my script? Is it too big?

////////////////////////////
//Run when entering map
void OnStart()
{
SetLevelDoorLocked("LevelDoor_1", true);
SetLevelDoorLockedSound("LevelDoor_1", "door_prison_locked.snt");
SetMessage("BeginningOfHorror", "Arrival", 0);
AddQuest("", "Quest2");
SetEntityPlayerInteractCallback("SuicideRoom_1", "SuicideRoomQuest", true);
AddEntityCollideCallback("Player", "QuestArea_1", "CollideQuests", true, 1);
AddEntityCollideCallback("Player", "CompleteRoomQuest_1", "CollideCompleteQuest", true, 1);
SetEntityPlayerInteractCallback("Note04", "NoteQuest", true);
SetEntityPlayerInteractCallback("SuicideRoomKey_1", "KeyMessage". true);
AddUseItemCallback("" ,"SuicideRoomKey_1", "SuicideRoom_1", "UsedKeyOnDoor", true);
AddUseItemCallback("", "LevelDoorKey_1", "LevelDoor_1", "LevelDoorUnlocked", true);
}



////////////////////////////
//Run when entering map
void OnEnter()

{

}

////////////////////////////
//Run when leaving map
void OnLeave()

{
SetupLoadScreen("LoadingText", "Underpass", 1, "");
CompleteQuest("", "Quest2");
}

////////////////////////////////////////////////////////////////////////////
//Item Callbacks
void UsedKeyOnDoor(string &in asItem, string &in asEntity)
{
SetSwingDoorLocked("SuicideRoom_1", false, true);
CompleteQuest("", "Quest4");
PlaySoundAtEntity("", "unlock_door.snt", "LevelDoor_1", 0, false);
}

void LevelDoorUnlocked(string &in asItem, string &in asEntity)
{
SetlevelDoorLocked("LevelDoor_1", false);


///////////////////////////////////////////
//Entity Callbacks//Interact//
void SuicideRoomQuest(string &in asEntity)
{
AddQuest("", "Quest4");
}

void NoteQuest(string &in asEntity)
{
AddQuest("", "Quest3");
}

void KeyMessage(string &in asEntity)
{
SetMessage("BeginningOfHorror", "KeyPickup", 0);
}

////////////////////////////////////////
//Collision Areas//
void CollideQuests(string &in asParent, string &in asChild, int alState)
{
AddQuest("", "Quest2");
}

void CollideCompleteQuest(string &in asParent, string &in asChild, int alState)
{
CompleteQuest("", "Quest3");
}

"Good men mean well; they just don't always end up doing well." -Isaac Clarke, Dead Space 2, Chapter 12
(This post was last modified: 07-31-2011, 05:51 PM by ObsidianLegion.)
07-31-2011, 05:01 PM
Find
MrCookieh Offline
Member

Posts: 157
Threads: 8
Joined: Jul 2011
Reputation: 0
#2
RE: URGENT Map not starting

SetLevelDoorLocked("LevelDoor_1", true);
You can remove this line, you can change it at the entity itself.

SetEntityPlayerInteractCallback("SuicideRoomKey_1", "KeyMessage"[b].[/b] true);

you put a . instead of a ,
Smile

The Well: Descent - Take a look at it!
07-31-2011, 05:08 PM
Find
ObsidianLegion Offline
Member

Posts: 173
Threads: 53
Joined: Jun 2011
Reputation: 0
#3
RE: URGENT Map not starting

(07-31-2011, 05:08 PM)MrCookieh Wrote: SetLevelDoorLocked("LevelDoor_1", true);
You can remove this line, you can change it at the entity itself.

SetEntityPlayerInteractCallback("SuicideRoomKey_1", "KeyMessage"[b].[/b] true);

you put a . instead of a ,
Smile

MrCookeh strikes again xD

Thanks, i'll try it soon (: Is this why it crashes and doesn't come up with errors? Because it's in the OnStart section?

"Good men mean well; they just don't always end up doing well." -Isaac Clarke, Dead Space 2, Chapter 12
07-31-2011, 05:11 PM
Find
MrCookieh Offline
Member

Posts: 157
Threads: 8
Joined: Jul 2011
Reputation: 0
#4
RE: URGENT Map not starting

Well, I don't know if this forces a crash... You have to try it Tongue

The Well: Descent - Take a look at it!
07-31-2011, 05:14 PM
Find
ObsidianLegion Offline
Member

Posts: 173
Threads: 53
Joined: Jun 2011
Reputation: 0
#5
RE: URGENT Map not starting

(07-31-2011, 05:14 PM)MrCookieh Wrote: Well, I don't know if this forces a crash... You have to try it Tongue

Considering what just happened. I think it does xD

I reckon you should..............HELP ME ON MY CUSTOM!

Don't you? x3

"Good men mean well; they just don't always end up doing well." -Isaac Clarke, Dead Space 2, Chapter 12
07-31-2011, 05:15 PM
Find
MrCookieh Offline
Member

Posts: 157
Threads: 8
Joined: Jul 2011
Reputation: 0
#6
RE: URGENT Map not starting

I won't have enough time to work on my stuff AND on another story, sorry.
But I'm always here to fix your stuff, if it broke Wink

The Well: Descent - Take a look at it!
07-31-2011, 05:20 PM
Find
ObsidianLegion Offline
Member

Posts: 173
Threads: 53
Joined: Jun 2011
Reputation: 0
#7
RE: URGENT Map not starting

(07-31-2011, 05:20 PM)MrCookieh Wrote: I won't have enough time to work on my stuff AND on another story, sorry.
But I'm always here to fix your stuff, if it broke Wink

Yes, you will because your solution didn't work! Angry

"Good men mean well; they just don't always end up doing well." -Isaac Clarke, Dead Space 2, Chapter 12
07-31-2011, 05:24 PM
Find
Kyle Offline
Posting Freak

Posts: 911
Threads: 36
Joined: Sep 2010
Reputation: 7
#8
RE: URGENT Map not starting

I'm sorry, but you can't expect people to make your custom story. You should work on small things like a few rooms or something and try to make it as best as you can. Then you just keep trying to make it better. You could work on another set of rooms with a different base set. Practice makes perfect! xD

07-31-2011, 05:27 PM
Find
ObsidianLegion Offline
Member

Posts: 173
Threads: 53
Joined: Jun 2011
Reputation: 0
#9
RE: URGENT Map not starting

(07-31-2011, 05:27 PM)Kyle Wrote: I'm sorry, but you can't expect people to make your custom story. You should work on small things like a few rooms or something and try to make it as best as you can. Then you just keep trying to make it better. You could work on another set of rooms with a different base set. Practice makes perfect! xD

Kyle! The person I was looking for!

Please help me?Angel

"Good men mean well; they just don't always end up doing well." -Isaac Clarke, Dead Space 2, Chapter 12
07-31-2011, 05:28 PM
Find
MrCookieh Offline
Member

Posts: 157
Threads: 8
Joined: Jul 2011
Reputation: 0
#10
RE: URGENT Map not starting

void LevelDoorUnlocked(string &in asItem, string &in asEntity)
{
SetlevelDoorLocked("LevelDoor_1", false);

you have to close this one with a }
couldn't find more... but that shouldn't fix the crash, too...

The Well: Descent - Take a look at it!
(This post was last modified: 07-31-2011, 05:32 PM by MrCookieh.)
07-31-2011, 05:31 PM
Find




Users browsing this thread: 1 Guest(s)