17 lines
217 B
Plaintext
17 lines
217 B
Plaintext
|
|
||
|
void main()
|
||
|
{
|
||
|
|
||
|
object oTarget;
|
||
|
|
||
|
object oPC = GetPCSpeaker();
|
||
|
|
||
|
SetLocalString(oPC, "hisdrc", "1");
|
||
|
|
||
|
oTarget = GetObjectByTag("hisdrcc");
|
||
|
SetLocked(oTarget, FALSE);
|
||
|
AssignCommand(oTarget, ActionOpenDoor(oTarget));
|
||
|
|
||
|
}
|
||
|
|