- Found in:
- Dylbills PE
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
ObjectReferencefastTravelMarker
ObjectReferencemoveToRef
WorldSpaceakWorldSpace
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