12 lines
181 B
Plaintext
12 lines
181 B
Plaintext
|
/*
|
||
|
Gate Auto close script
|
||
|
Automatically close gates after 10 seconds
|
||
|
Created by: Dalantriel Jul 2002
|
||
|
*/
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
ActionWait(10.0);
|
||
|
ActionCloseDoor(OBJECT_SELF);
|
||
|
}
|