IsFastTravelControlsEnabled - Game

From the Fallout4 CreationKit Wiki
Revision as of 14:40, 25 June 2012 by imported>DarkruneDK (Created page with "Category:Scripting Category:Papyrus '''Member of:''' Game Script Checks to see whether or not fast travel is allowed by script. == Syntax == <source lang="papyrus">...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Member of: Game Script

Checks to see whether or not fast travel is allowed by script.

Syntax[edit | edit source]

bool Function IsFastTravelControlsEnabled() native global

Parameters[edit | edit source]

None.

Return Value[edit | edit source]

True if fast travel is currently allowed by script. It will return false if EnableFastTravel(false) has been called. But if not, it will still return true even if the game doesn't allow fast travel.

Examples[edit | edit source]

; Can the player fast travel from here?
if Game.IsFastTravelControlsEnabled()
  Debug.Trace("Scripts have not disabled fast travel!")
endIf

See Also[edit | edit source]