1
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.
 
 
 

16 lines
394 B

Scriptname _00E_StartDoorScript extends ObjectReference
int count
Event OnActivate(ObjectReference akActionRef)
if count == 0
;Game.ShowRaceMenu()
Game.GetPlayer().SetActorValue("health", 50)
Game.GetPlayer().SetActorValue("Magicka", 50)
Game.GetPlayer().SetActorValue("Stamina", 50)
Game.GetPlayer().RemoveAllItems(abRemoveQuestItems = true)
endif
count = 1
endEvent