Configuration

Config = {}

Config.locales = {}

Config.Locale = "en"

Config.Framework = "qb"

Config.NeedXpForLevel = 100

Config.ScriptPatch = "resources/[ak4y]/ak4y-multicharacter-v2"

Config.Identifier = "license"

Config.CidColumn = "citizenid"

Config.DefaultCharCount = 4
Config.CharSlotCount = 10

Config.Sounds = {}

Config.Sounds.Female = {
    [1] = { label = "Voice 1", soundName = "sound2" },
    [2] = { label = "Voice 2", soundName = "sound4" },
    [3] = { label = "Voice 3", soundName = "sound6" },
    [4] = { label = "Voice 4", soundName = "sound8" },
    [5] = { label = "Voice 5", soundName = "sound10" },
}

Config.Sounds.Male = {
    [1] = { label = "Voice 1", soundName = "sound1" },
    [2] = { label = "Voice 2", soundName = "sound3" },
    [3] = { label = "Voice 3", soundName = "sound5" },
    [4] = { label = "Voice 4", soundName = "sound7" },
    [5] = { label = "Voice 5", soundName = "sound9" },
}

Config.Animations = {
    [1] = {
        label = "Hand Shake",
        dict = "gestures@m@standing@casual",
        anim = "gesture_hello",
        duration = 4500,
    },
    [2] = {
        label = "Salute",
        dict = "anim@mp_player_intincarsalutestd@ds@",
        anim = "idle_a",
        duration = 4500,
    },
    [3] = {
        label = "Thumbs Up",
        dict = "anim@mp_player_intupperthumbs_up",
        anim = "idle_a",
        duration = 4500,
    },
    [4] = {
        label = "Celebration Salute",
        dict = "anim@mp_player_intcelebrationmale@salute",
        anim = "salute",
        duration = 2500,
    },
    [5] = {
        label = "Blow Kiss",
        dict = "anim@mp_player_intcelebrationfemale@blow_kiss",
        anim = "blow_kiss",
        duration = 4500,
    },
    [6] = {
        label = "Facepalm",
        dict = "anim@mp_player_intupperface_palm",
        anim = "idle_a",
        duration = 4000,
    },
    [7] = {
        label = "Clap",
        dict = "anim@mp_player_intcelebrationmale@slow_clap",
        anim = "slow_clap",
        duration = 3000,
    },
}

Last updated