WizardryEE/Module/nss/auto_close_door.nss
Jaysyn904 22d6119c14 Added fancymapped Arcane Castle tileset
Added fancymapped Arcane Castle tileset.  Updated doortypes, genericdoors, loadscreens & placeable 2DAs for NWNEE.
2023-04-21 23:44:27 -04:00

10 lines
225 B
Plaintext

// Very simple script that closes the door 10.0 seconds after opening.
// Place on the OnOpen event of the door.
// Created by Zunath on August 13, 2007
void main()
{
DelayCommand(20.0, ActionCloseDoor(OBJECT_SELF));
}