21 lines
655 B
Plaintext
21 lines
655 B
Plaintext
Scriptname _00E_Theriantrophist_BlockCraftingSC extends ObjectReference
|
|
|
|
Actor Property PlayerREF Auto
|
|
Message Property _00E_Theriantrophist_CantCraftMSG Auto
|
|
Race Property _00E_Theriantrophist_PlayerWerewolfRace Auto
|
|
|
|
Bool bActivationBlocked = False
|
|
|
|
; This script is obsolete since 2.0.12 and has been replaced with a perk.
|
|
; Do not add it to new references.
|
|
|
|
Event OnActivate(ObjectReference akActionRef)
|
|
; Unlock activators, blocked by previous version of the script
|
|
if IsActivationBlocked()
|
|
BlockActivation(False)
|
|
if Game.GetPlayer().GetRace() != _00E_Theriantrophist_PlayerWerewolfRace
|
|
Activate(akActionRef, true)
|
|
endif
|
|
endif
|
|
EndEvent
|