9 lines
213 B
Plaintext
9 lines
213 B
Plaintext
ScriptName _00E_PlayerKillOnEnter Extends ObjectReference
|
|
|
|
Event OnTriggerEnter(ObjectReference akActionRef)
|
|
If akActionRef == Game.GetPlayer()
|
|
Debug.SetGodMode(false)
|
|
Game.GetPlayer().Kill()
|
|
EndIf
|
|
EndEvent
|