8 lines
193 B
Plaintext
8 lines
193 B
Plaintext
Scriptname _00E_KillPlayerOnEnter extends ObjectReference
|
|
|
|
Event OnTriggerEnter(ObjectReference akActionRef)
|
|
if akActionRef == Game.GetPlayer()
|
|
Game.GetPlayer().Kill(None)
|
|
EndIf
|
|
|
|
EndEvent |