14 lines
194 B
Plaintext
14 lines
194 B
Plaintext
void lockDoor()
|
|
{
|
|
ActionCloseDoor( OBJECT_SELF );
|
|
SetLocked( OBJECT_SELF, TRUE );
|
|
}
|
|
|
|
void main()
|
|
{
|
|
if (GetIsPC(GetLastUsedBy()))
|
|
{
|
|
DelayCommand(30.0, lockDoor() );
|
|
}
|
|
}
|