8 lines
164 B
Plaintext
8 lines
164 B
Plaintext
|
void main()
|
||
|
{
|
||
|
object oTarget = OBJECT_SELF;
|
||
|
|
||
|
AssignCommand(oTarget, ActionOpenDoor(oTarget));
|
||
|
DelayCommand(2.0,AssignCommand(oTarget, ActionCloseDoor(oTarget)));
|
||
|
}
|