TheHordeUndead_PRC8/_module/nss/gateautoclose.nss

12 lines
181 B
Plaintext
Raw Normal View History

2023-09-21 20:25:34 -04:00
/*
Gate Auto close script
Automatically close gates after 10 seconds
Created by: Dalantriel Jul 2002
*/
void main()
{
ActionWait(10.0);
ActionCloseDoor(OBJECT_SELF);
}