AddToMap - ObjectReference
Member of: ObjectReference Script
Adds this Reference (which must be a map marker) to the Players map, optionally making it available for fast-travel.
SyntaxEdit
Function AddToMap(bool abAllowFastTravel = False) native
ParametersEdit
- abAllowFastTravel: Whether the player can fast-travel to this marker or not.
- Default: False
Return ValueEdit
None.
ExamplesEdit
; Adds this marker to the map
MyHouseMarkerProperty.AddToMap()
; Adds this marker to the map, letting the player fast-travel
MyHouseMarkerProperty.AddToMap(true)