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
Locking level door after entering
Hartmann Offline
Member

Posts: 52
Threads: 18
Joined: Jun 2012
Reputation: 0
#1
Locking level door after entering

I cant find out what the script for locking a level door AFTER you entered. what does the script looks like?. Name of door in map 1: level_celler_2 and map 2: level_celler_1. and the key that locks it in the first map is: key_3
06-22-2012, 01:14 PM
Find
Cruzore Offline
Senior Member

Posts: 301
Threads: 2
Joined: Jun 2012
Reputation: 37
#2
RE: Locking level door after entering

If I understood it right, you want to be able to use a key on the second map's door so it locks? If so:
map 2 script file:
void OnStart()
{
AddUseItemCallback("", "key_3", "level_celler_1", "LockDoor", true);
}
void LockDoor(string &in asItem, string &in asEntity)
{
SetLevelDoorLocked(asEntity, true);
//If you want to remove the key also:
RemoveItem(asItem);
}
(This post was last modified: 06-22-2012, 01:23 PM by Cruzore.)
06-22-2012, 01:20 PM
Find
Hartmann Offline
Member

Posts: 52
Threads: 18
Joined: Jun 2012
Reputation: 0
#3
RE: Locking level door after entering

(06-22-2012, 01:20 PM)FastHunteR Wrote: If I understood it right, you want to be able to use a key on the second map's door so it locks? If so:
map 2 script file:
void OnStart()
{
AddUseItemCallback("", "key_3", "level_celler_1", "LockDoor", true);
}
void LockDoor(string &in asItem, string &in asEntity)
{
SetLevelDoorLocked(asEntity, true);
//If you want to remove the key also:
RemoveItem(asItem);
}
Right after i unlock the door and go trough it in map 1 it shall lock and you are not able to comeback
06-22-2012, 01:28 PM
Find
Cruzore Offline
Senior Member

Posts: 301
Threads: 2
Joined: Jun 2012
Reputation: 37
#4
RE: Locking level door after entering

So, when you go through the level door in the firsts map and go to the second, the level door on the second one should lock? That#s easy.
Just go to the leveleditor for the second map, select the level door and check for locked.
06-22-2012, 01:34 PM
Find
Hartmann Offline
Member

Posts: 52
Threads: 18
Joined: Jun 2012
Reputation: 0
#5
RE: Locking level door after entering

(06-22-2012, 01:34 PM)FastHunteR Wrote: So, when you go through the level door in the firsts map and go to the second, the level door on the second one should lock? That#s easy.
Just go to the leveleditor for the second map, select the level door and check for locked.
im so dumb! thank you! Smile
06-22-2012, 01:37 PM
Find




Users browsing this thread: 1 Guest(s)