diff --git a/Word of the Dead Jespar not following after combat.esp b/Word of the Dead Jespar not following after combat.esp new file mode 100644 index 00000000..330b6495 Binary files /dev/null and b/Word of the Dead Jespar not following after combat.esp differ diff --git a/scripts/_00e_jesparfollowtriggersc.pex b/scripts/_00e_jesparfollowtriggersc.pex index bd84a71e..69db0432 100644 Binary files a/scripts/_00e_jesparfollowtriggersc.pex and b/scripts/_00e_jesparfollowtriggersc.pex differ diff --git a/source/scripts/_00e_jesparfollowtriggersc.psc b/source/scripts/_00e_jesparfollowtriggersc.psc index 7c8f6bee..3249f99a 100644 --- a/source/scripts/_00e_jesparfollowtriggersc.psc +++ b/source/scripts/_00e_jesparfollowtriggersc.psc @@ -26,7 +26,7 @@ EndEvent Function SendEnterEvent() - if (CurrentQuest.GetStage() >= ValidStageMin ) && (CurrentQuest.GetStage() < ValidStageMax ) + if (CurrentQuest.GetCurrentStageID() >= ValidStageMin ) && (CurrentQuest.GetCurrentStageID() < ValidStageMax ) bool bWasZero @@ -62,13 +62,11 @@ Function SendEnterEvent() EndIf - Return - EndFunction Function SendExitEvent() - If (CurrentQuest.GetStage() >= ValidStageMin) && (CurrentQuest.GetStage() < ValidStageMax ) + If (CurrentQuest.GetCurrentStageID() >= ValidStageMin) && (CurrentQuest.GetCurrentStageID() < ValidStageMax ) If InTrigger == True TravelStateVariable.SetValue((TravelStateVariable.GetValue() - 1)) @@ -96,8 +94,6 @@ Function SendExitEvent() EndIf Endif - - Return EndFunction