PoA_PRC8/_module/nss/close_n_lock.nss

14 lines
205 B
Plaintext
Raw Normal View History

2022-10-07 14:20:31 -04:00
//Put this script OnOpen
void main()
{
object oPC = GetLastOpenedBy();
if (!GetIsPC(oPC)) return;
DelayCommand(15.0, ActionCloseDoor(OBJECT_SELF));
DelayCommand(15.0, SetLocked(OBJECT_SELF, TRUE));
}