Alangara_PRC8/_module/nss/ipi_autolock.nss
Jaysyn904 86feb9ca6f Initial commit
Initial commit.
2024-06-05 21:21:06 -04:00

14 lines
280 B
Plaintext

#include "ipi_defaults"
void ActionAutoCloseAndLock(object theObject)
{
if (GetIsOpen(theObject))
{ ActionCloseDoor(theObject); }
ActionDoCommand (SetLocked (theObject, TRUE));
}
void main()
{
DelayCommand(DOOR_DELAY, ActionAutoCloseAndLock(OBJECT_SELF));
}