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.
 
 
 

31 lines
800 B

Scriptname _00E_MQ00_TrigBox00Script extends ObjectReference
int DoOnce
Quest Property _00E_MQ00 auto
Race Property NordRaceChild auto
Event OnTriggerEnter(ObjectReference akActionRef)
if ( DoOnce == 0 )
if(akActionRef == Game.GetPlayer())
Game.FadeOutGame(false, true, 2.0, 1.0) ; Fade in after the mainmenu
;Game.SetInChargen(false, true, false) ; Save, Rest, HUD ? Disabled
Game.EnablePlayerControls() ; Enable Player Controls
;Game.ShowTitleSequenceMenu()
Game.GetPlayer().SetScale(0.98) ; Scale the player
Game.GetPlayer().SetRace(NordRaceChild) ; Set player race to child
Debug.MessageBox("Yippee, jetzt bin ich Jorle Rostlöffel!")
_00E_MQ00.SetStage(0) ; Starts _00E_MQ00 Quest
DoOnce = -1
endif
endif
EndEvent