EnableFastTravel - Cell
Revision as of 15: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...")
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)