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
Can't play my custom story
SuperSoldier333 Offline
Junior Member

Posts: 12
Threads: 2
Joined: Aug 2012
Reputation: 0
#6
RE: Can't play my custom story

(08-05-2012, 04:52 AM)ExenderVes Wrote: Have you got the

void OnEnter(){ }
void OnLeave(){ }

after those things? It should look like this if it does:

Quote:////////////////////////////
// Run when the map starts
void OnStart()
{
AddUseItemCallback("", "keydoor", "mansion_1", "OuvrirPorte", true;
}

void OuvrirPorte(string &in asItem, string &in asEntity)
{
SetSwingDoorLocked("mansion_1", false, true);
PlaySoundAtEntity("", unlock_door", "mansion_1", 0, false);
RemoveItem("keydoor");
}

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

}

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

}

And i think you missed a ")" after what i marked in red

Hope it works
I copied this in my file, but I still get the error. I tried to copy the on from the frictional games site (http://wiki.frictionalgames.com/hpl2/tut...t_beginner), and this one works.

Ok, so I know I can enter my map. But my key dosen't open the door.


////////////////////////////
// Run when the map starts
void OnStart()
{
AddUseItemCallback("", "keydoor", "mansion_1", "OuvrirPorte", true;
}

void OuvrirPorte(string &in asItem, string &in asEntity)
{
SetSwingDoorLocked("mansion_1", false, true);
PlaySoundAtEntity("", unlock_door", "mansion_1", 0, false);
RemoveItem("keydoor");
}

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

}

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

}
(This post was last modified: 08-05-2012, 02:15 PM by SuperSoldier333.)
08-05-2012, 02:06 PM
Find


Messages In This Thread
Can't play my custom story - by SuperSoldier333 - 08-05-2012, 04:01 AM
RE: Can't play my custom story - by Froge - 08-05-2012, 04:09 AM
RE: Can't play my custom story - by KingCrimson - 08-05-2012, 04:52 AM
RE: Can't play my custom story - by SuperSoldier333 - 08-05-2012, 02:06 PM
RE: Can't play my custom story - by KingCrimson - 08-05-2012, 04:14 PM
RE: Can't play my custom story - by Steve - 08-05-2012, 06:18 PM
RE: Can't play my custom story - by Steve - 08-05-2012, 07:08 PM
RE: Can't play my custom story - by Steve - 08-05-2012, 07:58 PM
RE: Can't play my custom story - by Steve - 08-05-2012, 08:03 PM
RE: Can't play my custom story - by tokugawa1 - 08-05-2012, 08:06 PM
RE: Can't play my custom story - by Steve - 08-05-2012, 09:54 PM



Users browsing this thread: 1 Guest(s)