10 lines
184 B
Plaintext
10 lines
184 B
Plaintext
|
//simple autoclose and relock script, as u can read :)
|
||
|
// Zeb
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
DelayCommand(2.0, ActionCloseDoor(OBJECT_SELF));
|
||
|
DelayCommand(3.0, SetLocked(OBJECT_SELF, TRUE));
|
||
|
}
|
||
|
|