EnableFastTravel - Cell

Revision as of 16:00, 24 September 2014 by imported>Plplecuyer (Created page with "Category:Scripting Category:Papyrus '''Member of:''' Cell Script Enables/disables fast travel out of this cell. == Syntax == <source lang="papyrus"> Function Enable...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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