enderalse/source/scripts/_00e_playerkillonenter.psc

9 lines
213 B
Plaintext
Raw Normal View History

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