enderalse/source/scripts/_00e_playerkillonenter.psc

9 lines
213 B
Plaintext
Raw Normal View History

2024-01-16 01:56:39 +00:00
ScriptName _00E_PlayerKillOnEnter Extends ObjectReference
Event OnTriggerEnter(ObjectReference akActionRef)
If akActionRef == Game.GetPlayer()
Debug.SetGodMode(false)
Game.GetPlayer().Kill()
EndIf
2024-01-16 01:56:39 +00:00
EndEvent