EnableFastTravel - Game

From the CreationKit Wiki
Revision as of 16:26, 18 October 2011 by imported>Rhavlovick (1 revision: Clobber re-import by Henning)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Member of: Game Script

Enables or disables the player's ability to fast travel.

Syntax

Function EnableFastTravel(abEnable = true) native global

Parameters

  • abEnable: If true, enables fast travel. Otherwise disables it.
    • Default: True

Return Value

None.

Examples

; Enable fast travel
Game.EnableFastTravel()


; Disable fast travel
Game.EnableFastTravel(false)

Notes

  • Fast travel is reenabled automatically when the player is moved.

See Also