Scriptname _00E_MQ13b_SC10_ElevatorSC extends ObjectReference  

Event OnTranslationComplete()

	if MQ13c.GetCurrentStageID() > 0
		if ! bIsUp
			bIsUp = true
			MQ13c.NexusElevatorStop()
		endif
	elseif ! bIsDown
		bIsDown = true
		MQ13b.NexusElevatorStop()
	endif
	
EndEvent

bool bIsDown
bool bIsUp

_00E_MQ13b_Functions Property MQ13b Auto
_00E_MQ13c_Functions Property MQ13c Auto