Skip to content

Full Config Reference

The complete default configs/server/trigger.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.

Download trigger.lua

lua
-- SERVER-ONLY (not in fxmanifest files{}, never ships to clients): the radio-mast tower POOL.
-- The server picks the active subset at boot and publishes only those coords via GlobalState.
return {
    -- Candidate mast spots ({ pos, heading }); list as many as you like.
    Towers = {
        { pos = vec3(1459.45, 4730.39, 127.50), heading = 250.17 },
        { pos = vec3(2927.67, 5622.30, 243.36), heading = 225.91 },
        { pos = vec3(2900.53, 2392.77, 170.46), heading = 22.25 },
        { pos = vec3(2094.05, 982.12, 210.93), heading = 318.93 },
        { pos = vec3(-1057.32, 1607.67, 263.97), heading = 341.81 },
        { pos = vec3(-2346.97, 1362.51, 334.52), heading = 94.18 },
        { pos = vec3(-1189.56, 3856.11, 489.22), heading = 319.56 },
        { pos = vec3(-917.17, 4845.72, 307.66), heading = 227.65 },
        { pos = vec3(3445.76, 4192.20, 239.65), heading = 79.53 },
        { pos = vec3(2330.64, 6187.13, 173.68), heading = 160.70 },
        { pos = vec3(158.74, 4623.55, 197.16), heading = 203.20 },
        { pos = vec3(-561.00, 4155.05, 188.40), heading = 204.64 },
    },
}