Difference between revisions of "FastTravel - Game"

From the CreationKit Wiki
Jump to navigation Jump to search
imported>Rhavlovick
m (1 revision: Clobber re-import by Henning)
 
imported>BarbasTheDog
m (after some testing, I concluded it only works if you're moving into an exterior cell.)
Line 23: Line 23:


== Notes ==
== Notes ==
Scripted fast-travel does not save the player's game.
*Scripted fast-travel does not save the player's game.
 
*If akDestination is located on an exterior cell, a loading screen will play and the player will stay on the same spot.


== See Also ==
== See Also ==
*[[Game Script]]
*[[Game Script]]

Revision as of 18:52, 16 June 2013

Member of: Game Script

Fast-travels the player to the specified ObjectReference's location.

Syntax

Function FastTravel(ObjectReference akDestination) native global

Parameters

  • akDestination: The object to fast travel to.

Return Value

None.

Examples

; Fast-travel home
Game.FastTravel(HomeMarker)

Notes

  • Scripted fast-travel does not save the player's game.
  • If akDestination is located on an exterior cell, a loading screen will play and the player will stay on the same spot.

See Also