generated from Jaysyn/ModuleTemplate
21 lines
642 B
Plaintext
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));
|
|
}
|