12 lines
259 B
Plaintext
12 lines
259 B
Plaintext
|
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
object oDoor = GetObjectByTag ("lizardescape1");
|
||
|
ActionPlayAnimation(ANIMATION_PLACEABLE_ACTIVATE);
|
||
|
ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE);
|
||
|
SetLocked (oDoor, FALSE);
|
||
|
AssignCommand (oDoor, ActionOpenDoor(oDoor));
|
||
|
}
|
||
|
|