stevku's workshop
  • 🚕stevku_taxijob
    • shared/config.lua
    • shared/translate.lua
    • client/provide.lua
  • STEVKU_CARTRANSMITTER
    • shared/config.lua
    • shared/translate.lua
    • client/provide.lua
  • stevku_medicalpc
    • shared/config.lua
    • server/provide.lua
    • Incident API
  • STEVKU_PAGERS
    • client/provide.lua
    • shared/config.lua
    • shared/translate.lua
    • Pager API
Powered by GitBook
On this page
  1. STEVKU_CARTRANSMITTER

shared/config.lua

All you can find in shared/config.lua

config           = {}
config.ped       = { -- Start task ped
    model  = 'u_m_m_aldinapoli',
    coords = vector4(-414.38, -2704.61, 6, 133.46)
}
config.cam_ofs   = vector2(-0.6, -1.0) -- Ped interaction camera offset
config.toLvlUp   = 10 -- Tasks to level up
config.positions = { -- Car spawns
    vector4(-383.74, -2734.54, 6.03, 33.68)
}
config.cooldown  = 0 -- Cooldown in seconds to send police notify and create transmitter
config.vehicles  = {
    [1] = { -- Level 1 cars
        {
            model = "cheburek",
            label = "Cheburek",
            value = 5000,
            pay   = {min = 100, max = 500}
        }
    },
    [2] = {
        {
            model = "rapidgt2",
            label = "Rapid GT Cabrio",
            value = 10000,
            pay   = {min = 200, max = 700}
        }
    },
    [3] = {
        {
            model = "adder",
            label = "Adder",
            value = 15000,
            pay   = {min = 500, max = 1500}
        }
    }
}
config.jobs      = {'police', 'sheriff'} -- LEA jobs names
config.delivery  = { -- Delivery positions
    {
        ped = vector4(-350.08, -2631.37, 6, 226.76),
        car = vector3(-348, -2633.47, 6)
    }
}
Previousclient/provide.luaNextshared/translate.lua

Last updated 9 months ago