IsFastTravelControlsEnabled - Game
Jump to navigation
Jump to search
Member of: Game Script (Requires 1.8)
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