17 lines
274 B
Plaintext
17 lines
274 B
Plaintext
|
//Put this script OnOpen
|
||
|
void main()
|
||
|
{
|
||
|
|
||
|
object oPC = GetLastOpenedBy();
|
||
|
|
||
|
if (!GetIsPC(oPC)) return;
|
||
|
|
||
|
object oTarget;
|
||
|
oTarget = GetObjectByTag("herodoor");
|
||
|
|
||
|
DelayCommand(2.0, AssignCommand(oTarget, ActionCloseDoor(oTarget)));
|
||
|
|
||
|
DelayCommand(2.0, SetLocked(oTarget, TRUE));
|
||
|
|
||
|
}
|