Files
HeroesStone_PRC8/_module/nss/sc_doorcloseself.nss
Jaysyn904 1eefc84201 Initial Commit
Initial Commit.
2025-09-14 15:40:46 -04:00

11 lines
328 B
Plaintext

// Script: sc_doorcloseself
// Function: To have a door close by itself
// Author: Nathan Laing
// E-Mail: nazz@bigpond.com
void main()
{
DelayCommand(8.0, ActionCloseDoor(OBJECT_SELF)); // Close the door 8 seconds after opening
// DelayCommand(8.0, ActionDoCommand (SetLocked (OBJECT_SELF, TRUE))); // Lock the door
}