Fixed _00E_MQ08PressurePlate not matching source code

This commit is contained in:
Eddoursul 2024-01-10 15:09:01 +01:00
parent 976927b6eb
commit 6215476e88
3 changed files with 7 additions and 4 deletions

Binary file not shown.

Binary file not shown.

View File

@ -1,11 +1,14 @@
scriptName _00E_MQ08PressurePlate extends ObjectReference scriptName _00E_MQ08PressurePlate extends ObjectReference
event OnTriggerEnter(objectReference triggerRef ) event OnTriggerEnter(objectReference triggerRef )
if MQ08_IntoTheDeep.GetStage() == 125 && triggerRef == Game.GetPlayer() if MQ08_IntoTheDeep.GetCurrentStageID() == 125 && triggerRef == Game.GetPlayer()
MQ08_IntoTheDeep.SetStage(130) MQ08_IntoTheDeep.SetCurrentStageID(130)
Self.Activate(MQ08PortcullisRef) Self.Activate(MQ08PortcullisRef, false)
MQ08PortcullisRef.PlayAnimation("Close")
MQ08PortcullisRef02.PlayAnimation("Open")
EndIf EndIf
endevent endevent
Quest Property MQ08_IntoTheDeep Auto Quest Property MQ08_IntoTheDeep Auto
ObjectReference Property MQ08PortcullisRef Auto ObjectReference Property MQ08PortcullisRef Auto
ObjectReference property MQ08PortcullisRef02 auto