Map Data

Each map entry includes:

You can create as much as maps u want make sure to follow the guidelines!

Field
Description

id

Internal identifier

Name

Display name

About

Short description

BackgroundImage

Image for menus

Coords

Player spawn points

Config['MapData'] = {
    ['Scrapyard'] = {
        id = 'Scrapyard',
        Name = 'Scrap Yard',
        About = "The Scrap Yard is a junkyard in Los Santos...",
        BackgroundImage = 'https://example.com/scrapyard.png',
        Coords = {
            vec4(2400.429, 3085.957, 48.316, 40.60),
            vec4(2414.873, 3095.043, 48.152, 179.04),
        }
    },
    ['FudgeLane'] = {
        id = 'FudgeLane',
        Name = 'Fudge Lane',
        About = "Residential gang territory...",
        BackgroundImage = 'https://example.com/fudge.png',
        Coords = { ... }
    }
}

Last updated