11 lines
140 B
Plaintext
11 lines
140 B
Plaintext
/*
|
|
//:: en4_close_door.nss
|
|
//::
|
|
//:: Close open doors after a delay
|
|
*/
|
|
|
|
void main()
|
|
{
|
|
DelayCommand(30.0f,ActionCloseDoor(OBJECT_SELF));
|
|
}
|