19 lines
271 B
Plaintext
19 lines
271 B
Plaintext
|
|
void main()
|
|
{
|
|
|
|
object oPC = GetClickingObject();
|
|
|
|
if (!GetIsPC(oPC)) return;
|
|
|
|
if (GetItemPossessedBy(oPC, "emblemoftheov2")== OBJECT_INVALID)
|
|
return;
|
|
|
|
object oTarget;
|
|
oTarget = GetObjectByTag("LG546bb");
|
|
|
|
AssignCommand(oTarget, ActionStartConversation(oPC, ""));
|
|
|
|
}
|
|
|