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_PAGERS

shared/config.lua

All you can find in shared/config.lua

config       = {}
config.jobs  = {'ambulance'}
config.codes = {
    'BLUE',
    'GRAY',
    'TRAUMA',
    'CONSULT'
}
config.priority = {
    'AMBUL',
    'EMERG',
    'COP',
    'VIP'
}
config.places = {
    'OR1',
    'OR2',
    'ER1',
    'ER2',
    'Room 1001',
    'Room 1002',
    'V.I.P 1601',
    'V.I.P 1602'
}
config.settings = {
    item             = 'pager',
    requireToPage    = false,
    requireToGetPage = true
}
config.useTarget = true
config.targets   = {
    {
        debug  = false,
        coords = vector4(-433.5929, -325.4310, 35.2271, 152.5280),
        size   = vector3(1.0, 1.0, 1.0)
    }
}
config.targetIcon = 'fa-solid fa-pager'
config.useCommand = true
config.command    = 'pager'

Previousclient/provide.luaNextshared/translate.lua

Last updated 6 months ago