Skip to content

[Server Hosting] Market Common Mistakes

LieutenantMaster edited this page Jun 26, 2023 · 3 revisions

Return to the overview "The Market System"

"Item listed doesnt have a preview and translated name"

unknown item preview

This items doesnt exist. Make sure your are loading the mod adding this items and make sure you provided the correct classname !

"Not Enough Spawn Positions withing x meters of this trader!"

Not Enough Spawn Positions withing x meters of this trader

The vehicle you are trying to buy was unable to be spawned as the Trader couldn't find a valid spawn position nearby. It could be due to the following issues :

1 - You dont have a configured spawn position nearby. In this case go inside your mpmission/dayzoffline.mapname/expansion/settings/marketsettings.json and add a new Spawn Position.

Example :

"LandSpawnPositions": [
    {
        "Position": [
            11903.400390625,
            140.0,
            12455.099609375
        ],
        "Orientation": [
            24.0,
            0.0,
            0.0
        ]
    },
    {
        "Position": [
            11898.400390625,
            140.0,
            12481.599609375
        ],
        "Orientation": [
            24.0,
            0.0,
            0.0
        ]
    }
]
{
    "Position": [
        X,
        Y, <== Altitude
        Z
    ],
    "Orientation": [
        24.0, <=== Orientation
        0.0,
        0.0
    ]
}, <=== Remove the comma if it's the last spawn position of your list !

2 - The other possibility is a invalid spawn position which is not safe to spawn a vehicle. It could be because of objects too close to the configured spawn position for example

"Stuck at Loading Trader..."

Trader not loading

Two possibilities :

  1. Your trader .json is broken, validate your file !
  2. Your trader is not inside a traderzone
Clone this wiki locally