Move first-time character menu orchestration out of Papyrus and into the C++ session-launch flow. CO_Vault109StartQuestScript.psc now only teleports the player and sets stage 10. F4TSessionLaunch.cpp adds camera preparation/restoration, direct PlayerCamera/ThirdPersonState face-camera tuning, primary console ShowLooksMenu 14 path, Actor.ShowLooksMenu fallback, retry/timeouts and guarded state resets. Added logging and counters for Looks/SPECIAL menu polling. Updated changelog.md and docs/dev-log.md to describe the new flow and testing notes.
16 lines
376 B
Plaintext
16 lines
376 B
Plaintext
Scriptname CO_Vault109StartQuestScript extends Quest
|
|
|
|
ObjectReference Property Vault109SpawnMarker Auto Const
|
|
|
|
Event OnQuestInit()
|
|
If IsStageDone(10) == False
|
|
Utility.Wait(1.0)
|
|
|
|
Actor playerRef = Game.GetPlayer()
|
|
Debug.Notification("Vault 109 spawn quest ran")
|
|
playerRef.MoveTo(Vault109SpawnMarker)
|
|
|
|
SetStage(10)
|
|
EndIf
|
|
EndEvent
|