Zones

This represents the zones configuration (sh_zones.lua)

Config.Zones = {}

Config.Zones.Default = { --Settings for default (non-reward) zones
    ZonePower = 100,     --How much total power is in the zone.
}

Config.Zones.Types = {    --Zone types
    ["money"] = {         --Zone type
        color = "00a303", --Zone color
    },
    ["industry"] = {      --Zone type
        color = "00a303", --Zone color
    },
}

Config.Zones.InfluenceEvents = {
    ["kill_other_gang_member"] = {
        add = 2,   --How much influence give to the gang that killed the player?
        remove = 1 --How much influence to remove from the killed player's gang?
    },
    ["zone_occupation"] = {
        interval = 60000, --How long does the player have to stay in the zone to receive the influence? (in ms)
        add = 1,          --How much influence to give to the player's gang?
    },
    --- Thought of more? Write up a suggestion in our Discord server!
}

Zone List

Zone Creation

To create zones easier, use this tool to create their polyzones.

Structure

This is the all possible values a zone can have.

Last updated