Config

You can check out default config

cfg = {}

-- default settings, do not delete this

cfg.Dialog = {
    typeEffect = false,
    typeEffectSpeed = 25,
    allowSkip = true,
}

cfg.Camera = {
    anim = {
        male = {
            {dict = "missfbi3_party_d", anim = "stand_talk_loop_a_male1"},
            {dict = "missfbi3_party_d", anim = "stand_talk_loop_a_male2"},
            {dict = "missfbi3_party_d", anim = "stand_talk_loop_b_male2"},
            {dict = "missfbi3_party_d", anim = "stand_talk_loop_b_male3"},
        },
        female = {
            {dict = "missfbi3_party_b", anim = "talk_inside_loop_female"},
            {dict = "missfbi3_party_d", anim = "stand_talk_loop_b_female"},
            {dict = "missfbi3_party_d", anim = "stand_talk_loop_a_female"},
            {dict = "rcmnigel1cnmt_1c", anim = "price_tag"},
        }
    },
    position = {
        x = 0.0,
        y = 0.8,
        z = 0.7,
    },
    offset = {
        x = 0.0,
        y = 0.0,
        z = 0.5,
    },
    fov = 65.0,
    ease = true,
    easeTime = 1000,
}

cfg.Chat = {
    range = 10.0,
    message = false,
    answer = false,
    color = {
        answer = {0, 240, 190},
        message = {0, 155, 255},
    }
}

Last updated