Markers

config/markers.lua
Config.Maps = { -- List of stations
    "default-gta",
}
-- Availabel maps:
    -- default-gta -> is the default police station in the game
    -- mission-row -> gabz mission row map: https://www.youtube.com/watch?v=uptc79n5OBs
    -- artex-mrpd -> Artex mission row map: https://www.youtube.com/watch?v=LmXNMchAUDg
    -- custom -> you have to place the markers in your custom map
    -- If you want to add your custom map markers to the script open a ticket in the discord server

Here you can specify what maps do you have in your server, so the script will automatically setup the markers in the respective positions, right now there're 3 supported maps, the default-gta, mission-row and the artex-mrpd, if you want to add a new map you have to create another json file in the config/police-station folder, you can copy the custom values and edit the coords.

Here we're going to show an example of how to add another marker in the same police station, in this example we're going to use the marker Request vehicle:

"RequestVehicle": [
        {
            "coords": [447.5, -1021.12, 28.51, 115.5076],
            "spawn": [-812.5518, -1506.1417, -0.4746, 115.5076]
        },
        {
            "coords": [518.5, -1125.12, 32.51, 512.5076],
            "spawn": [-517.5518, -1183.1417, 32.4746, 50.51]
        },
    ],

Last updated