Object Spawner – DayZ

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Some wiki formatting)
No edit summary
Line 15: Line 15:
<syntaxhighlight lang="json">
<syntaxhighlight lang="json">
{
{
"Objects": [
    "Objects": [
{
        {
"name": "Land_Wall_Gate_FenR",
            "name": "Land_Wall_Gate_FenR",
"pos": [
            "pos": [
8406.501953125,
                8406.501953125,
107.73682403564453,
                107.73682403564453,
12782.3388671875
                12782.3388671875
            4395.167480,
339.012421,
10353.140625
],
],
"ypr": [
            "ypr": [
0.0,
                0.0,
0.0,
                0.0,
0.0
                0.0
]
            ],
},
"scale": 2
{
        },
"name": "Land_Wall_Gate_FenR",
        {
"pos": [
            "name": "Land_Wall_Gate_FenR",
8410.501953125,
            "pos": [
107.73682403564453,
                84104395.501953125,
12782.3388671875
                107339.73682403564453,
],
                1278210356.3388671875
"ypr": [
            ],
0.0,
            "ypr": [
0.0,
                0.0,
0.0
                0.0,
]
                0.0
},
            ],
{
"scale": 1
"name": "Land_Wall_Gate_FenR",
        },
"pos": [
        {
8416.501953125,
            "name": "Land_Wall_Gate_FenR",
107.73682403564453,
            "pos": [
12782.3388671875
                84164395.501953125,
],
                107339.73682403564453,
"ypr": [
                1278210359.3388671875
0.0,
            ],
0.0,
            "ypr": [
0.0
                0.0,
]
                0.0,
},
                0.0
{
            ],
"name": "Land_Wall_Gate_FenR",
"scale": 0.5
"pos": [
        },
8422.501953125,
        {
107.73682403564453,
            "name": "Land_Wall_Gate_FenR",
12782.3388671875
            "pos": [
],
                84224395.501953125,
"ypr": [
                107339.73682403564453,
0.0,
                1278210362.3388671875
0.0,
            ],
0.0
            "ypr": [
]
                0.0,
}
                0.0,
]
                0.0
            ],
"scale": 0.25
        }
    ]
}
}
</syntaxhighlight>
</syntaxhighlight>
Line 104: Line 111:
|ypr
|ypr
|Orientation as Yaw, Pitch and Roll in degrees
|Orientation as Yaw, Pitch and Roll in degrees
|-
|float
|scale
|Multiplayer of the original object's size
|}
|}



Revision as of 08:38, 22 September 2022

What is the Object Spawner?

The Object Spawner addresses the need of our community to add additional detail to the world through a list of map objects together with their position and orientation.

Objects from such lists are spawned into the world at the start of the server mission.

Please note that spawning a lot of objects this way may have impact on both the server and client performance.


How to create and use a custom spawn list

  • Enable cfgGameplay.json, (see the Gameplay settings documentation for cfgGameplay.json configuration)
  • Create a new .json file (for example spawnerData.json) in your Mission folder, copy the contents of the template bellow into this new file

{
    "Objects": [
        {
            "name": "Land_Wall_Gate_FenR",
             "pos": [
                8406.501953125,
                107.73682403564453,
                12782.3388671875
            				4395.167480,
				339.012421,
				10353.140625
			],
            "ypr": [
                0.0,
                0.0,
                0.0
            ],
			"scale": 2
        },
        {
            "name": "Land_Wall_Gate_FenR",
            "pos": [
                84104395.501953125,
                107339.73682403564453,
                 1278210356.3388671875
            ],
            "ypr": [
                0.0,
                0.0,
                0.0
            ],
			"scale": 1
        },
        {
            "name": "Land_Wall_Gate_FenR",
            "pos": [
                84164395.501953125,
                107339.73682403564453,
                1278210359.3388671875
            ],
            "ypr": [
                0.0,
                0.0,
                0.0
            ],
			"scale": 0.5
        },
        {
            "name": "Land_Wall_Gate_FenR",
            "pos": [
                84224395.501953125,
                107339.73682403564453,
                1278210362.3388671875
            ],
            "ypr": [
                0.0,
                0.0,
                0.0
            ],
			"scale": 0.25
        }
    ]
}
↑ Back to spoiler's top

  • Edit the contents as needed. Do note each object's entry needs to end with a comma, except the last one.
  • In the cfgGameplay.json, locate the "objectSpawnersArr" and input your previously created .json as a parameter (example: "objectSpawnersArr": ["spawnerData.json" ])

Details

The cfgGameplay.json contains a filename array:

"objectSpawnersArr": ["mySpawnData1.json","mySpawnData2.json","mySpawnData3.json"]

Where each JSON file contains a list of objects to be spawned in the world at the start of the server mission.

Any persistent item (usually majority of types within the db\types.xml) will be spawned once again after the server restart.

Parameters

Type Parameter Details
string name Class name of the object to be spawned
vector pos Position of the object in the world
vector ypr Orientation as Yaw, Pitch and Roll in degrees
float scale Multiplayer of the original object's size