18 lines
214 B
Plaintext
18 lines
214 B
Plaintext
|
|
void main()
|
|
|
|
{
|
|
|
|
object oTarget;
|
|
|
|
object oPC = GetClickingObject();
|
|
|
|
if (!GetIsPC(oPC)) return;
|
|
|
|
oTarget = GetObjectByTag("tendtothouse");
|
|
|
|
AssignCommand(oTarget, ActionStartConversation(oPC, "tendtothouse"));
|
|
|
|
}
|
|
|