Configuration

Config = {}

Config.Framework = 'auto' -- 'auto', 'qb', 'ox', 'qbx'

-- Language setting 'en', 'tr'
Config.Language = 'en'

-- Default color settings
Config.DefaultColors = {
    bgColor = '#000000',
    bgOpacity = 90,
    msgBgColor = '#ffffff',
    msgBgOpacity = 5,
    textColor = '#ffffff',
    headerColor = '#FFD700'
}

-- Command and its description
Config.CommandInfo = {
    command = 'jobchat',
    description = 'Opens the profession chat channel'
}

Config.TimeZone = 'Europe/London' -- Time zone

-- Available time zones and their descriptions
Config.AvailableTimeZones = {
    -- Europe
    ['Europe/Istanbul'] = 'Türkiye (UTC+3)',
    ['Europe/London'] = 'İngiltere (UTC+0)',
    ['Europe/Paris'] = 'Fransa (UTC+1)',
    ['Europe/Berlin'] = 'Almanya (UTC+1)',
    ['Europe/Moscow'] = 'Rusya (UTC+3)',
    
    -- America
    ['America/New_York'] = 'New York (UTC-5)',
    ['America/Chicago'] = 'Chicago (UTC-6)',
    ['America/Denver'] = 'Denver (UTC-7)',
    ['America/Los_Angeles'] = 'Los Angeles (UTC-8)',
    ['America/Toronto'] = 'Toronto (UTC-5)',
    ['America/Vancouver'] = 'Vancouver (UTC-8)',
    
    -- Asia
    ['Asia/Dubai'] = 'Dubai (UTC+4)',
    ['Asia/Singapore'] = 'Singapur (UTC+8)',
    ['Asia/Tokyo'] = 'Japonya (UTC+9)',
    ['Asia/Shanghai'] = 'Çin (UTC+8)',
    ['Asia/Seoul'] = 'Güney Kore (UTC+9)',
    
    -- Oceania
    ['Australia/Sydney'] = 'Sidney (UTC+10)',
    ['Australia/Melbourne'] = 'Melbourne (UTC+10)',
    ['Pacific/Auckland'] = 'Yeni Zelanda (UTC+12)',
    
    -- Other
    ['UTC'] = 'UTC (Universal Clock)',
    ['GMT'] = 'GMT (Greenwich Mean Time)'
}

Config.Notifications = {
    enabled = true,    -- Turn notifications on/off
    duration = 5000,   -- Notification period (seconds)
    title = 'Job Chat',  -- Notification title    
    icon = 'fas fa-comments', -- Notification icon (for ox_notify)
    color = '#9C27B0', -- Notification color
    sound = true,      -- Notification sound
    soundFile = 'notification.mp3' -- Notification sound file
}

-- Job list
Config.Jobs = {
    ['police'] = 'Police',
    ['ambulance'] = 'Ambulance',
    ['mechanic'] = 'Mechanic',
    ['taxi'] = 'Taxi'
}

Config.TagSettings = {
    color = '#9C27B0',  -- Tag color
    fontFamily = "'Poppins', sans-serif",  -- Tag font family
    fontWeight = '600',    -- Tag font thickness
    fontSize = '14px',    -- Tag font size
    backgroundColor = 'rgba(156, 39, 176, 0.1)',  -- Tag background color
    padding = '2px 6px',      -- Tag background color
    borderRadius = '4px',  -- Tag border radius
    borderColor = '#9C27B0', -- Tag border rengi
    borderWidth = '1px',  -- Tag border kalınlığı
    borderStyle = 'solid' -- Tag border stili
} 

Last updated