13 lines
314 B
Plaintext
13 lines
314 B
Plaintext
// -----------------------------------------------
|
|
// : File Door_closeanlck
|
|
// : Created 01 JUL 02 11:48 AM
|
|
// : Created by Darryl Sandell
|
|
// closes open door after set time
|
|
// and locks door.
|
|
// -----------------------------------------------
|
|
void main()
|
|
{
|
|
DelayCommand(60.0, ActionCloseDoor(OBJECT_SELF));
|
|
|
|
}
|