10 lines
225 B
Plaintext
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));
|
||
|
}
|