22 lines
576 B
Plaintext
22 lines
576 B
Plaintext
Scriptname _00E_PlayerhousingEnableBuilmodeOE extends ObjectReference
|
|
|
|
_00E_PlayerhousingMaster Property master auto
|
|
|
|
GlobalVariable Property _00E_NQ24_PlayerHouseOwned Auto
|
|
|
|
Event OnTriggerEnter(ObjectReference akActionRef)
|
|
if akActionRef == Game.GetForm(0x14)
|
|
if SKSE.GetVersion()
|
|
master.enableBuildmode()
|
|
endif
|
|
if _00E_NQ24_PlayerHouseOwned.GetValueInt() == 0
|
|
_00E_NQ24_PlayerHouseOwned.SetValueInt(1)
|
|
endif
|
|
endif
|
|
EndEvent
|
|
|
|
Event OnTriggerLeave(ObjectReference akActionRef)
|
|
if akActionRef == Game.GetForm(0x14)
|
|
master.disableBuildmode()
|
|
endif
|
|
EndEvent |