EnableFastTravel - Cell

Member of: Cell Script

Enables/disables fast travel out of this cell.

SyntaxEdit

Function EnableFastTravel(bool abEnable = True) native

ParametersEdit

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

Return ValueEdit

None.

ExamplesEdit

; 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 AlsoEdit