Page cover

πŸ‘οΈBlips

  • Adding more blips to the resource is very simple in blips.lua

  • To add another blip simply add an entry into Config.Blips

  • The key is the location name and must match throughout

  • Blips are ONLY displayed for the player that has the correct job

  • Edit the coords, id, colour, scale and title as required to suit your server

  • A list of blips and the available colours can be found herearrow-up-right

--blips for job delivery locations
Config.Blips = {
    ['Up & Atom'] = { -- the key is the location name and must match throughout
        useblip = true, -- enabled blip for this job delivery location
        coords = vector3(89.93, 291.5, 110.53), -- coords of blip (must be vector3)
        id = 50, -- id of blip
        colour = 5, -- colour of blip
        scale = 0.5, -- scale of blip
        title = 'Up & Atom Job Deliveries', -- name of blip
    },
    --add more locations as required
}

Last updated