4
Fork 0
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

11 lines
306 B

Scriptname defaultStartSceneOnAliasDeath extends ReferenceAlias
{Starts a scene if the creature in this alias is killed be the player}
;Properties
Scene Property SceneToStart Auto
Event OnDeath(Actor akKiller)
if (akKiller == (Game.GetForm(0x14) as Actor))
SceneToStart.Start()
endif
endEvent