EnableFastTravel - ObjectReference
Revision as of 15:23, 14 July 2011 by imported>Plplecuyer (Created page with 'Category:Scripting Category:Papyrus '''Member of:''' ObjectReference Script Enables or disables fast travel to this reference (which must be a map marker). == Synta…')
Member of: ObjectReference Script
Enables or disables fast travel to this reference (which must be a map marker).
Syntax[edit | edit source]
Function EnableFastTravel(bool abEnable = true) native
Parameters[edit | edit source]
- abEnable: Whether to enable fast travel or disable it
- Default: True
Return Value[edit | edit source]
None.
Examples[edit | edit source]
; Enable fast travel to the marker
MyHouseMarkerProperty.EnableFastTravel()
; Disable fast travel to this marker
MyHouseMarkerProperty.EnableFastTravel(false)