Disabled QuickLoot on the Ishyan chest

This commit is contained in:
Eddoursul 2025-08-16 01:40:22 +02:00
parent f768e59b18
commit 5414966bf6
4 changed files with 22 additions and 0 deletions

Binary file not shown.

Binary file not shown.

View File

@ -4805,3 +4805,4 @@ scripts\ccbgs_arportcullisscript.pex
scripts\ccbgs_arpressureplatescript.pex
scripts\ccbgs_arspiketrapscript.pex
scripts\ccbgs_arswitchscript.pex
scripts\_00e_blockrefactivationforothers.pex

View File

@ -0,0 +1,21 @@
Scriptname _00E_BlockRefActivationForOthers extends ObjectReference
Event OnInit()
Self.BlockActivation(True)
EndEvent
Event OnLoad()
Self.BlockActivation(True)
EndEvent
Event OnActivate(ObjectReference akActionRef)
if akActionRef == Game.GetForm(0x14)
Self.Activate(akActionRef, True)
EndIf
EndEvent