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.
 
 
 

31 lines
864 B

Scriptname _00E_MQ13b_SC09_NexusPlatformSphereSC extends ObjectReference Conditional
Event OnTriggerEnter(ObjectReference akActionRef)
If akActionRef == MQ13b._00E_MC_YaelaREF
bYaelaOnPlatform = True
ElseIf akActionRef == MQ13b.akCompanionRomance
bCompanionOnPlatform = True
ElseIf akActionRef == MQ13b.PlayerREF
bPlayerOnPlatform = True
EndIf
EndEvent
Event OnTriggerLeave(ObjectReference akActionRef)
If akActionRef == MQ13b._00E_MC_YaelaREF
bYaelaOnPlatform = False
ElseIf akActionRef == MQ13b.akCompanionRomance
bCompanionOnPlatform = False
ElseIf akActionRef == MQ13b.PlayerREF
bPlayerOnPlatform = False
EndIf
EndEvent
_00E_MQ13b_Functions Property MQ13b Auto
bool Property bPlayerOnPlatform Auto Conditional Hidden
bool Property bCompanionOnPlatform Auto Conditional Hidden
bool Property bYaelaOnPlatform Auto Conditional Hidden