2021-10-05 22:15:58 +00:00
|
|
|
|
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<74>ffel!")
|
2024-01-10 14:08:24 +00:00
|
|
|
|
_00E_MQ00.SetCurrentStageID(0) ; Starts _00E_MQ00 Quest
|
2021-10-05 22:15:58 +00:00
|
|
|
|
|
|
|
|
|
DoOnce = -1
|
|
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
EndEvent
|
|
|
|
|
|