2021-10-05 22:15:58 +00:00
|
|
|
Scriptname _00E_MQ02ArkTrigger extends ObjectReference
|
|
|
|
|
|
|
|
Event OnTriggerEnter(ObjectReference akActionRef)
|
|
|
|
If (akActionRef == PlayerRef && !bDone)
|
2024-01-10 14:08:24 +00:00
|
|
|
Int curStage = MQ02.GetCurrentStageID()
|
2021-10-05 22:15:58 +00:00
|
|
|
If curStage >= 140
|
|
|
|
bDone = True
|
|
|
|
If curStage < 160
|
2024-01-10 14:08:24 +00:00
|
|
|
MQ02.SetCurrentStageID(160)
|
2021-10-05 22:15:58 +00:00
|
|
|
EndIf
|
|
|
|
EndIf
|
|
|
|
EndIf
|
|
|
|
EndEvent
|
|
|
|
|
|
|
|
bool bDone
|
|
|
|
Actor Property PlayerRef Auto
|
|
|
|
Quest Property MQ02 Auto
|