generated from Jaysyn/ModuleTemplate
11 lines
272 B
Plaintext
11 lines
272 B
Plaintext
/////////////////////////////////////
|
|
// Dragon's Edge
|
|
// by Charly Carlos
|
|
/////////////////////////////////////
|
|
// Causes the door to reclose after a few seconds.
|
|
/////////////////////////////////////
|
|
void main()
|
|
{
|
|
DelayCommand(20.0, ActionCloseDoor(OBJECT_SELF));
|
|
}
|