4
Fork 0
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

23 lines
421 B

Scriptname _00E_MQ13b_SC01_StarshipSC extends ObjectReference
Function StartShake()
While !bStopShake
Game.ShakeCamera(Game.GetPlayer(), Utility.RandomFloat(0.01, 0.02), 3)
Utility.Wait(3)
Return
EndWhile
EndFunction
Event OnTranslationAlmostComplete()
bStopShake = True
Game.ShakeCamera(afStrength = 0.15)
MQ13b.bShipArrived = True
EndEvent
bool bStopShake
_00E_MQ13b_Functions Property MQ13b Auto