HiddenTradition_PRC8/_module/nss/ro_d_closelock20.nss
2024-06-20 15:47:42 -04:00

13 lines
342 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(20.0, ActionCloseDoor(OBJECT_SELF));
SetLocked(OBJECT_SELF, 1);
}