PWE_PRC8/_module/nss/closeandlock.nss

14 lines
342 B
Plaintext
Raw Normal View History

2025-04-03 10:29:41 -04:00
// -----------------------------------------------
// : 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(5.0, ActionCloseDoor(OBJECT_SELF));
SetLocked(OBJECT_SELF, 1);
}