2021-10-06 00:15:58 +02:00
|
|
|
Scriptname _00E_WhatWeDeserveAchievementSC extends Actor
|
|
|
|
|
|
|
|
Event OnActivate(ObjectReference akActionRef)
|
|
|
|
|
2024-01-10 01:46:13 +01:00
|
|
|
If akActionRef == PlayerREF && !bDone
|
2022-08-03 23:19:58 +02:00
|
|
|
Steam.UnlockAchievement("END_ROCIO_01")
|
2021-10-06 00:15:58 +02:00
|
|
|
bDone = true
|
|
|
|
EndIf
|
|
|
|
|
|
|
|
EndEvent
|
|
|
|
|
|
|
|
Actor Property PlayerREF Auto
|
2024-01-10 01:46:13 +01:00
|
|
|
bool bDone = false
|