19 lines
267 B
Plaintext
19 lines
267 B
Plaintext
|
|
void main()
|
|
{
|
|
|
|
object oTarget;
|
|
|
|
object oPC = GetEnteringObject();
|
|
|
|
if (!GetIsPC(oPC)) return;
|
|
|
|
if (GetItemPossessedBy(oPC, "fingrylp3")== OBJECT_INVALID)
|
|
return;
|
|
|
|
oTarget = GetObjectByTag("Winok2b2");
|
|
AssignCommand(oTarget, ActionStartConversation(oPC, ""));
|
|
|
|
}
|
|
|