AddToMap - ObjectReference

From the CreationKit Wiki
Revision as of 16:26, 18 October 2011 by imported>Rhavlovick (1 revision: Clobber re-import by Henning)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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[edit | edit source]

Function AddToMap(bool abFastTravel = False) native

Parameters[edit | edit source]

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

Return Value[edit | edit source]

None.

Examples[edit | edit source]

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


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

See Also[edit | edit source]