WizardryEE/Module/nss/auto_close_door.nss

10 lines
225 B
Plaintext
Raw Normal View History

// Very simple script that closes the door 10.0 seconds after opening.
// Place on the OnOpen event of the door.
// Created by Zunath on August 13, 2007
void main()
{
DelayCommand(20.0, ActionCloseDoor(OBJECT_SELF));
}