16 lines
286 B
Plaintext
16 lines
286 B
Plaintext
|
|
||
|
void main()
|
||
|
|
||
|
{
|
||
|
object oTarget;
|
||
|
|
||
|
// Get the PC who is in this conversation.
|
||
|
object oPC = GetPCSpeaker();
|
||
|
|
||
|
// Unlock and open "crbthm1b_0".
|
||
|
oTarget = GetObjectByTag("crbthm1b_0");
|
||
|
SetLocked(oTarget, FALSE);
|
||
|
AssignCommand(oTarget, ActionOpenDoor(oTarget));
|
||
|
}
|
||
|
|