19 lines
302 B
Plaintext
19 lines
302 B
Plaintext
|
|
void main()
|
|
{
|
|
|
|
object oTarget;
|
|
|
|
object oPC = GetPCSpeaker();
|
|
|
|
oTarget = GetObjectByTag("fortrstocit");
|
|
SetLocked(oTarget, FALSE);
|
|
AssignCommand(oTarget, ActionOpenDoor(oTarget));
|
|
|
|
oTarget = GetObjectByTag("cittofortrs");
|
|
SetLocked(oTarget, FALSE);
|
|
AssignCommand(oTarget, ActionOpenDoor(oTarget));
|
|
|
|
}
|
|
|