14 lines
203 B
Plaintext
14 lines
203 B
Plaintext
//Put this script OnOpen
|
|
void main()
|
|
{
|
|
|
|
object oPC = GetLastOpenedBy();
|
|
|
|
if (!GetIsPC(oPC)) return;
|
|
|
|
DelayCommand(4.0, ActionCloseDoor(OBJECT_SELF));
|
|
|
|
DelayCommand(5.0, SetLocked(OBJECT_SELF, TRUE));
|
|
|
|
}
|