Background for Skyrim SE
Member of the DbSkseEvents script
eventOnPositionPlayerFinishGlobal(ObjectReferencefastTravelMarker, ObjectReferencemoveToRef, WorldSpaceakWorldSpace, CellakInteriorCell)

Description

Documentation Comment

OnPositionPlayerFinish is after the game is done loading when the player moves into a new space.
The parameters here will be the same from the last OnPositionPlayerStart event.


Parameters

  1. ObjectReferencefastTravelMarker

  2. ObjectReferencemoveToRef

  3. WorldSpaceakWorldSpace

  4. CellakInteriorCell


Examples

Auto-Generated Example

Scriptname MyCoolScript extends DbSkseEvents

event OnPositionPlayerFinishGlobal(ObjectReference fastTravelMarker, ObjectReference moveToRef, WorldSpace akWorldSpace, Cell akInteriorCell)
    Debug.trace("Event received - OnPositionPlayerFinishGlobal: fastTravelMarker = " + fastTravelMarker + " moveToRef = " + moveToRef + " akWorldSpace = " + akWorldSpace + " akInteriorCell = " + akInteriorCell)
endEvent
Some data provided by the Skyrim Creation Kit Wiki. Licensed under the Creative Commons Attribution-ShareAlike license.