L2S Documentation
DiscordTebex
  • Documentation
  • Information
    • Discord Roles
    • How to update your asset
    • FiveM Asset Escrow System
  • Coding Information
    • Webhook System
    • Register Key Mapping
    • Translation System
  • ASSETS & GUIDES
    • 🚨Dispatch
      • ⤵️Installation
      • ⚙️Configuration
        • Settings
        • API
        • Hub
        • CCTV
        • Dispatch
        • UI
      • 💻Integration
        • Exports
          • Client
          • Server
        • Police Alerts
        • Radio Channel
        • Duty System
    • 🏨Hotels V2
      • ⤵️Installation
      • ⚙️Configuration
        • Config
        • Elevators
        • Hotels
      • 💻Exports
    • 👮Police Hub
      • ⤵️Installation
      • ⚙️Configuration
      • 💻Events & Alerts
    • 💀Gangs Turf
      • ⤵️Installation
      • ⚙️Configuration
        • Settings
        • Gangs
      • 💻Exports
      • 📚Tutorial
    • 🔫Paint Ball
      • ⤵️Installation
      • ⚙️Configuration
        • Settings
        • Clothes
        • Locations
      • 💻Exports
Powered by GitBook
On this page
  1. ASSETS & GUIDES
  2. Dispatch
  3. Configuration

Hub

Shared.JobsHub = {
    ['POLICE'] = {
        Title = Lang('Police_Title'),  -- Title for the Police section in the hub
        Dashboard = {
            CCTV = true,  -- CCTV in Map 
            Bodycams = true,  -- Bodycam Button 
            Bolo = true,  -- BOLO Page 
            Units = true,  -- Units In UI Map 
            Archives = true,  -- Archive Page 
            Chat = true,  -- Chat Page 
        },
        Jobs = {  -- Jobs accessible within the Police hub
            ['police'] = Lang('LSPD_Section'),  -- LSPD Section Job
            ['sheriff'] = Lang('Sheriff_Section'),  -- Sheriff Section Job
        },
    },
    ['EMS'] = {
        Title = Lang('EMS_Title'),  -- Title for the EMS section in the hub
        Dashboard = {
            CCTV = false,  -- CCTV in Map 
            Bodycams = true,  -- Bodycam Button 
            Bolo = false,  -- BOLO Page 
            Units = true,  -- Units In UI Map 
            Archives = true,  -- Archive Page 
            Chat = true,  -- Chat Page 
        },
        Jobs = {  -- Jobs accessible within the EMS hub
            ['ambulance'] = Lang('EMS_Section'),  -- EMS ambulance section job
        },
    },
}
PreviousAPINextCCTV

Last updated 6 months ago

🚨
⚙️