AddToMap - ObjectReference

Revision as of 11:52, 27 March 2014 by imported>RobinHood70 (→‎See Also)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Member of: ObjectReference Script

Adds this reference (which must be a map marker) to the player's map, optionally making it available for fast-travel.

Syntax

Function AddToMap(bool abFastTravel = False) native

Parameters

  • abFastTravel: Whether the player can fast-travel to this marker or not.
    • Default: False

Return Value

None.

Examples

; Adds this marker to the map
MyHouseMarkerProperty.AddToMap()


; Adds this marker to the map, letting the player fast-travel
MyHouseMarkerProperty.AddToMap(true)

See Also