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

21 lines
642 B
Plaintext

//::///////////////////////////////////////////////
//:: Name ReClose an Open Door
//:: FileName door_close_oo
//:: Copyright (c) 2001 Bioware Corp.
//:://////////////////////////////////////////////
/*
Placed in the OnOpen event handler of any door that
opens, this script will automatically close the door
after 15 seconds of being open. It is meant to
keep the doors in a PW from remaining open indefinitely.
*/
//:://////////////////////////////////////////////
//:: Created By: PsychicToaster
//:: Created On: 7-21-04
//:://////////////////////////////////////////////
void main()
{
DelayCommand(10.0, ActionCloseDoor(OBJECT_SELF));
}