14 lines
269 B
Plaintext
14 lines
269 B
Plaintext
Scriptname _00E_WhatWeDeserveAchievementSC extends Actor
|
|
|
|
Event OnActivate(ObjectReference akActionRef)
|
|
|
|
If akActionRef == PlayerREF && !bDone
|
|
Steam.UnlockAchievement("END_ROCIO_01")
|
|
bDone = true
|
|
EndIf
|
|
|
|
EndEvent
|
|
|
|
Actor Property PlayerREF Auto
|
|
bool bDone = false
|