SuperSoldier333
Junior Member
Posts: 12
Threads: 2
Joined: Aug 2012
Reputation:
0
|
RE: Can't play my custom story
(08-05-2012, 08:06 PM)tokugawa1 Wrote: (08-05-2012, 08:01 PM)SuperSoldier333 Wrote: What is a level door? If it's a door to end a level, no I don't have one. i just have a room with two doors, one locked and the other that leads to a room with full of closet and grunt. try this code:
////////////////////////////
// Run when the map starts
void OnStart()
{
AddUseItemCallback("", "keydoor", "mansion_1", "UsedKeyOnDoor", true);
}
void UsedKeyOnDoor(string &in asItem, string &in asEntity)
{
SetSwingDoorLocked("mansion_1", false, true);
PlaySoundAtEntity("", "unlock_door", "mansion_1", 0.0f, false);
RemoveItem("keydoor");
}
////////////////////////////
// Run when entering map
void OnEnter()
{
}
////////////////////////////
// Run when leaving map
void OnLeave()
{
}
Hope this helps I tried with this one and I can't even see the custom story in-game.
(08-05-2012, 08:03 PM)Steve Wrote: (08-05-2012, 08:01 PM)SuperSoldier333 Wrote: What is a level door? If it's a door to end a level, no I don't have one. i just have a room with two doors, one locked and the other that leads to a room with full of closet and grunt.
could you send me an link with an .rar file with your map and scripts?
so I can look for my self I think it has dto do with something else than the code How? I'm sorry but I really don't know how.
|
|
08-05-2012, 09:38 PM |
|