void main() { object oPC = GetEnteringObject(); object owlb11 = GetObjectByTag("wlb11"); int nHP = GetCurrentHitPoints(owlb11); if (!GetIsPC(oPC)) return; int DoOnce = GetLocalInt(OBJECT_SELF, GetTag(OBJECT_SELF)); if (DoOnce==TRUE) return; if (nHP >= 1) { SetLocalInt(OBJECT_SELF, GetTag(OBJECT_SELF), TRUE); AssignCommand(oPC, ClearAllActions(TRUE)); SetCutsceneMode(oPC, TRUE); AssignCommand(oPC, ActionMoveToObject(owlb11)); DelayCommand(4.0, SetCutsceneMode(oPC, FALSE)); DelayCommand(4.5, AssignCommand(owlb11, ActionStartConversation(oPC, ""))); } else return; }