2021-10-05 22:15:58 +00:00
|
|
|
Scriptname _00E_MQ04_LishariLiftScript extends ObjectReference
|
|
|
|
|
|
|
|
Event OnActivate(ObjectReference akActionRef)
|
|
|
|
|
|
|
|
if akActionRef == Self
|
|
|
|
LiftLoop = DRSStoneRotatingDiscLPM.Play(Self)
|
|
|
|
Self.TranslateToRef(MQ04_SC6_LishariLiftDown, 90.0, 10.0)
|
|
|
|
EndIf
|
|
|
|
|
|
|
|
EndEvent
|
|
|
|
|
|
|
|
Event OnTranslationComplete()
|
|
|
|
|
|
|
|
Sound.StopInstance(LiftLoop)
|
|
|
|
Game.ShakeCamera(afStrength = 0.3)
|
|
|
|
Utility.Wait(1)
|
2024-01-10 14:08:24 +00:00
|
|
|
MQ04.SetCurrentStageID(70)
|
2021-10-05 22:15:58 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
EndEvent
|
|
|
|
|
|
|
|
int LiftLoop
|
|
|
|
|
|
|
|
|
|
|
|
Quest Property MQ04 Auto
|
|
|
|
Sound Property DRSStoneRotatingDiscLPM Auto
|
|
|
|
ObjectReference Property MQ04_SC6_LishariLiftDown Auto
|