19 lines
335 B
Plaintext
19 lines
335 B
Plaintext
|
|
void main()
|
|
{
|
|
|
|
object oTarget;
|
|
|
|
object oPC = GetEnteringObject();
|
|
|
|
// Only fire once.
|
|
if ( GetLocalInt(GetModule(), "DO_ONCE__" + GetTag(OBJECT_SELF)) )
|
|
return;
|
|
SetLocalInt(GetModule(), "DO_ONCE__" + GetTag(OBJECT_SELF), TRUE);
|
|
|
|
oTarget = GetObjectByTag("Mogiteznx");
|
|
AssignCommand(oTarget, ActionStartConversation(oPC, ""));
|
|
|
|
}
|
|
|