11 lines
225 B
Plaintext
11 lines
225 B
Plaintext
|
void main()
|
||
|
{
|
||
|
ActionPlayAnimation(ANIMATION_PLACEABLE_ACTIVATE);
|
||
|
object oDoor = GetObjectByTag("tri_hobdoor2");
|
||
|
|
||
|
SetLocked(oDoor, 0);
|
||
|
DelayCommand(2.0, ActionOpenDoor(oDoor));
|
||
|
|
||
|
DelayCommand(5000.0, SetLocked(oDoor, TRUE));
|
||
|
}
|