folderconfig.lua

Full View

Config = {}

-- Framework: 'esx' | 'qbcore'
Config.Framework = 'esx'

-- Default music volume (0.0 - 1.0)
Config.DefaultVolume = 0.5

-- =============================
-- AIRPODS TYPES / SKINS
-- =============================
Config.Airpods = {
    airpods = {
        label = 'AirPods Pro',
        prop = 2,        -- ear/ear accessory
        drawable = 41,
        texture = 0
    },
    headphone = {
        label = 'headphone 1',
        prop = 0,        -- hat/helmet
        drawable = 15,
        texture = 0
    },
    headphone2 = {
        label = 'headphone 2',
        prop = 0,        -- hat/helmet
        drawable = 15,
        texture = 1
    },
    headphone3 = {
        label = 'headphone 3',
        prop = 0,        -- hat/helmet
        drawable = 15,
        texture = 2
    },
    headphone4 = {
        label = 'headphone 4',
        prop = 0,        -- hat/helmet
        drawable = 15,
        texture = 3
    },
    headphone5 = {
        label = 'headphone 5',
        prop = 0,        -- hat/helmet
        drawable = 15,
        texture = 4
    },
    headphone6 = {
        label = 'headphone 6',
        prop = 0,        -- hat/helmet
        drawable = 15,
        texture = 5
    },
    headphone7 = {
        label = 'headphone 7',
        prop = 0,        -- hat/helmet
        drawable = 15,
        texture = 6
    },
    headphone8 = {
        label = 'headphone 8',
        prop = 0,        -- hat/helmet
        drawable = 15,
        texture = 7
    },
}

-- =============================
-- TEXT / LABELS / NOTIFICATIONS
-- =============================
Config.Text = {
    MenuTitle = '🎧 Music Controls',
    PauseResume = '⏸ Pause / Resume',
    VolumeUp = '🔊 Volume +',
    VolumeDown = '🔉 Volume -',
    NewLink = '🌐 New YouTube Link',
    Stop = '⏹ Stop',
    InputTitle = '🎧 Enter YouTube Link',
    InputPlaceholder = 'https://www.youtube.com/watch?v=K7d-c9BhWUc',
    ErrorInvalidLink = 'Invalid YouTube link!',
    ErrorNoAirpods = '🎧 You dont have your headphones on.',
    NotifyMusicStarted = '🎵 Music started'
}

Last updated