Full Config Reference
The complete default configs/server/world.lua for Dead Drop. Use this as a reference or starting point for your own configuration.
TIP
This is the full unedited config file. For a detailed explanation of each option, see the Configuration page.
lua
-- SERVER-ONLY (not in fxmanifest files{}, never ships to clients): where drops can spawn.
return {
-- Fallback plane approach headings (degrees). Only used when a drop resolves to a single
-- cluster - multi-cluster routes fly the axis between the farthest clusters instead.
Corridors = {
{ heading = 0.0 },
{ heading = 72.0 },
{ heading = 144.0 },
{ heading = 216.0 },
{ heading = 288.0 },
},
-- Curated landing spots ({ pos, heading }), captured with /deaddrop_place. The server picks a
-- random anchor plus its nearest few; containers land exactly on these (no scatter).
DropZones = {
{ pos = vec3(2523.27, 4820.21, 33.18), heading = 263.9 },
{ pos = vec3(2466.21, 4954.03, 44.15), heading = 76.2 },
{ pos = vec3(2373.26, 4790.17, 35.07), heading = 283.9 },
{ pos = vec3(2090.26, 4798.56, 40.12), heading = 89.2 },
{ pos = vec3(1934.77, 4705.04, 40.17), heading = 247.0 },
{ pos = vec3(1710.81, 4706.37, 41.64), heading = 346.6 },
{ pos = vec3(1972.97, 5005.55, 40.62), heading = 173.2 },
{ pos = vec3(1966.71, 4896.88, 42.98), heading = 83.2 },
{ pos = vec3(2252.92, 4938.46, 40.18), heading = 173.2 },
{ pos = vec3(2514.02, 4963.68, 43.59), heading = 188.5 },
{ pos = vec3(2579.42, 4457.79, 36.82), heading = 188.5 },
{ pos = vec3(2804.28, 4718.84, 45.31), heading = 38.5 },
{ pos = vec3(2723.37, 5002.30, 32.72), heading = 23.5 },
{ pos = vec3(2825.15, 3872.34, 48.08), heading = 233.5 },
{ pos = vec3(2478.93, 3120.81, 46.84), heading = 53.5 },
{ pos = vec3(2032.31, 3210.90, 43.86), heading = 338.5 },
{ pos = vec3(1248.44, 3220.93, 39.40), heading = 128.5 },
{ pos = vec3(949.07, 3564.73, 32.80), heading = 68.5 },
},
}