Skip to content

How to configure the Expansion Map Markers

LieutenantMaster edited this page Sep 9, 2021 · 11 revisions

DayZ Expansion

Where do you need to go ?

Go to DayZServer\ServerProfile (or config)\ExpansionMod\Settings and open the MapSettings.json

Expansion Server Settings Path

Inside this file you should have something similar except you don't have the lines highlighted in white yet

Map Settings File

How does it work ?

    {
        "m_UID": "MyUniqueID101",
        "m_Visibility": 6,
        "m_Is3D": 1,
        "m_Text": "My Marker Name",
        "m_IconName": "IconName",
        "m_Color": -13710223,
        "m_Position": [
            1268.0012,
            0,
            2420.145
        ]
    },

REMOVE the , from }, to the last marker config (look at the example at the end of the page)

m_UID

The UID is the unique identity of a marker, this mean it need to be unique to be valid. This ID can have numbers or letters.

m_Visibility

We recommend you to keep it to 6 since his behavior is affected by the other settings and might not do what you really expect from this setting.

  • 0 = Not visible.
  • 2 = Visible on the World (If "m_Is3D" is set to 1, you should probably put "m_Visibility" to 2).
  • 4 = Visible on the Map only.
  • 6 = Visible on the Map and on the World (If "m_Is3D" is set to 1, you should probably put "m_Visibility" to 2).

m_Is3D

  • 0 = Only visible on the 2d map
  • 1 = visible in 3D while playing and on the 2d map

m_Text

This text will be displayed next to the marker name. You can also keep it empty if you want.

m_IconName

What Icon will be used for the marker. Good news is, it's easy to know which one to use since they are in the correct order ingame (until we add new icons and I will need to redo this list) :)

    "Arrow"
    "Error"
    "Airdrop"
    "Car"
    "Deliver"
    "Radiation"
    "Trader"
    "Water 1"
    "Water 2"
    "Infected 1"
    "Infected 2"
    "Skull 1"
    "Skull 2"
    "Skull 3"
    "Helicopter"
    "Base"
    "Boat"
    "Fishing"
    "Territory"
    "Bear"
    "Claw"
    "Drip"
    "Ear"
    "Eye"
    "Fireplace"
    "Heart"
    "Hook"
    "Info"
    "Knife"
    "Map"
    "Marker"
    "Map Marker"
    "Orientation"
    "Menu"
    "Pen"
    "Persona"
    "Pill"
    "Questionmark"
    "Moon"
    "Star"
    "Sun"
    "Ellipse"
    "Tent"
    "Thermometer"
    "Book 1"
    "Book 2"
    "Note"
    "Grab"
    "Open Hand"
    "Radio"
    "Shield"
    "Snow"
    "Group"
    "Vehicle Crash"
    "Animal Skull"
    "Apple"
    "Apple Core"
    "Arrows"
    "Axe"
    "Backpack"
    "Bandage"
    "Batteries"
    "Berries"
    "Kitchen Knife Big"
    "Binoculars"
    "Bolt"
    "Bonfire"
    "Bottle"
    "Bow"
    "Broken Lighter"
    "Can Of Beans Big"
    "Can Of Beans Small"
    "Car Keys"
    "Carrot"
    "Chain Saw"
    "Chicken"
    "Chocolate"
    "Cigarets"
    "Cloth"
    "Compass"
    "Corn"
    "Crowbar"
    "Cow"
    "Dinosaur Skull"
    "Dry Wood"
    "Eatable Flowers"
    "Electrical Tape"
    "Empty Can"
    "Fish"
    "Flare"
    "Flare Gun"
    "Flare Gun Ammo"
    "Flashlight"
    "Fox"
    "Frying Pan"
    "Gas"
    "Gas Mask"
    "Golf Club"
    "Goose"
    "Grenade"
    "Guitar"
    "Gun"
    "Gun Bullets"
    "Hammer"
    "Herbal Medicine"
    "Home Made Grenade"
    "Human Skull"
    "Insect"
    "Kitchen Knife"
    "Ladder"
    "Lantern"
    "Lighter"
    "Machette"
    "Paper Map"
    "Matches"
    "Medic Box"
    "Mushrooms"
    "Nails"
    "Paper"
    "Pills"
    "Pipe Wrench"
    "Powder"
    "Pumpkin"
    "Rabbit"
    "Raccon"
    "Radio"
    "Rat"
    "Rock 1"
    "Rock 2"
    "Rope"
    "Saw"
    "Scrap Metal"
    "Screwdriver"
    "Shotgun"
    "Shotgun Bullets"
    "Shovel"
    "Soda"
    "Tent Small"
    "Walkie Talkie"
    "Water Jug"
    "Wild Pork"
    "Worms"

m_Color

The color of the marker, use this website to generate the color you want to apply on your marker !

Enter the RGBA values and then click on the button "ARGB → int" to generate the color code you will need.

  • R: Red
  • G: Green
  • B: Blue
  • A: Opacity from 0 (can't be seen) to 255 (very visible, opaque)

You can use this website to generate the RGBA color, however watch out this website generate the A value from 0 to 1 instead of 255 !

m_Position

The position of the marker in X Y Z coordinates.

Any admin tools and editors should be able to give you this values. You could go where you want your marker to be and check your player position for example.

Some examples !

    {
        "ServerMarkers": [
            {
                "m_UID": "Green Mountain Trader",
                "m_Visibility": 6,
                "m_Is3D": 1,
                "m_Text": "Green Mountain Trader",
                "m_IconName": "Trader",
                "m_Color": -13710223,
                "m_Position": [
                    3697,
                    402.13,
                    5987
                ]
            },
            {
                "m_UID": "Eastwatch Trader",
                "m_Visibility": 6,
                "m_Is3D": 1,
                "m_Text": "Eastwatch Trader",
                "m_IconName": "Trader",
                "m_Color": -13710223,
                "m_Position": [
                    14303,
                    5,
                    13275
                ]
            },
            {
                "m_UID": "Black Market Trader",
                "m_Visibility": 6,
                "m_Is3D": 1,
                "m_Text": "Black Market Trader",
                "m_IconName": "Trader",
                "m_Color": -13710223,
                "m_Position": [
                    1362,
                    345,
                    9310
                ]
            }
        ]
    }
Clone this wiki locally