Block loot menus in _00E_WhatWeDeserveAchievementSC

This commit is contained in:
Eddoursul 2024-01-31 20:58:03 +01:00
parent 317826b960
commit bad3bd49c3
2 changed files with 14 additions and 6 deletions

View File

@ -1,13 +1,21 @@
Scriptname _00E_WhatWeDeserveAchievementSC extends Actor
event OnInit()
; Block loot menus
BlockActivation()
endevent
Event OnActivate(ObjectReference akActionRef)
If akActionRef == PlayerREF && !bDone
Steam.UnlockAchievement("END_ROCIO_01")
bDone = true
If akActionRef == Game.GetForm(0x14)
Activate(akActionRef, true)
if ! bDone
Utility.Wait(0.2)
Steam.UnlockAchievement("END_ROCIO_01")
bDone = true
endif
EndIf
EndEvent
Actor Property PlayerREF Auto
bool bDone = false
bool bDone