2021-10-05 22:15:58 +00:00
|
|
|
Scriptname _00E_FS_Theriantrophist_AllowTempTSC extends ObjectReference
|
|
|
|
|
|
|
|
Event OnTriggerEnter(ObjectReference akActionRef)
|
2021-10-12 02:10:35 +00:00
|
|
|
If akActionRef == PlayerREF
|
2021-10-05 22:15:58 +00:00
|
|
|
_00E_FS_Theriantrophist_AllowTemporaryTransform.SetValueInt(1)
|
2021-10-12 02:10:35 +00:00
|
|
|
EndIf
|
2021-10-05 22:15:58 +00:00
|
|
|
EndEvent
|
|
|
|
|
|
|
|
Event OnTriggerLeave(ObjectReference akActionRef)
|
2021-10-12 02:10:35 +00:00
|
|
|
If akActionRef == PlayerREF
|
2021-10-05 22:15:58 +00:00
|
|
|
_00E_FS_Theriantrophist_AllowTemporaryTransform.SetValueInt(0)
|
2021-10-12 02:10:35 +00:00
|
|
|
EndIf
|
2021-10-05 22:15:58 +00:00
|
|
|
EndEvent
|
|
|
|
|
|
|
|
Actor Property PlayerREF Auto
|
|
|
|
GlobalVariable Property _00E_FS_Theriantrophist_AllowTemporaryTransform Auto
|