EnableFastTravel - Cell

From the Fallout4 CreationKit Wiki
Jump to navigation Jump to search

Member of: Cell Script

Enables/disables fast travel out of this cell.

Syntax[edit | edit source]

Function EnableFastTravel(bool abEnable = True) native

Parameters[edit | edit source]

  • abEnable: If true, enables fast travel out of this cell, otherwise disables it.
    • Default: True

Return Value[edit | edit source]

None.

Examples[edit | edit source]

; Let the player fast travel out of the skyscraper
Skyscraper.EnableFastTravel()


; Don't let the player fast travel out of the back room
BackRoom.EnableFastTravel(false)

See Also[edit | edit source]