Difference between revisions of "ShowMap"

From the Fallout3 GECK Wiki
Jump to navigation Jump to search
imported>Gribbleshnibit8
imported>Pintocat
Line 1: Line 1:
{{Incomplete}}
{{Function
|summary = Adds the specified map marker to the player's world map. The player will still not be able to fast-travel to this location until she or he actually travels there once unless the optional enableFastTravel parameter is set to 1.
|name = ShowMap
|returnType = void
|arguments =
  {{FunctionArgument
  |Name = MapMarkerID
  |Type = Ref
  }}{{FunctionArgument
  |Name = enableFastTravel
  |Type = int
  |Optional = y
  }}
}}


Link to TES4 Construction Set Wiki: [http://cs.elderscrolls.com/index.php?title=ShowMap ShowMap].
==Examples==
<pre>
ShowMap SecretDungeonMapMarker
    ; show SecretDungeon on world map, but don't enable fast travel
</pre>
 
<pre>
ShowMap NotSoSecretVillageMapMarker, 1
    ; show NotSoSecretVillage on world map and immediately enable fast travel to it
</pre>


[[Category:Functions]]
[[Category:Functions]]

Revision as of 02:22, 20 January 2017

< [[::Category:Functions|Category:Functions]]
missing function origin info
Further information might be found in a section of the discussion page. Please remove this message when no longer necessary.

Description

Adds the specified map marker to the player's world map. The player will still not be able to fast-travel to this location until she or he actually travels there once unless the optional enableFastTravel parameter is set to 1.

Syntax

[help]
ShowMap MapMarkerID:Ref enableFastTravel:int


Examples

ShowMap SecretDungeonMapMarker 
    ; show SecretDungeon on world map, but don't enable fast travel
ShowMap NotSoSecretVillageMapMarker, 1 
    ; show NotSoSecretVillage on world map and immediately enable fast travel to it