πŸ’ƒAnimation Presets

Setup the animation presets menu to Spawn NPC Copy

Men

Place all YCD files in the stream/maleanimation folder, you can find the files here

config.lua
Config.animationpresets = {
    {
        label = "aimkneel",
        description = "Tactical Kneel Aiming",
        animationDict = "anim@tactical_kneel_aiming",
        animationName = "kneel_aiming_clip",
        menu = "male"
    },
    {
        label = "riflerelax1",
        description = "Tactical Collapsed Lowready",
        animationDict = "anim@male_tactical_collapsed_lowready",
        animationName = "collapsed_lowready_clip",
        menu = "male"
    },
    {
        label = "riflerelax2",
        description = "Tactical Highready Relaxed",
        animationDict = "anim@male_tactical_highready_relaxed",
        animationName = "highready_relaxed_clip",
        menu = "male"
    },
    {
        label = "highlow3",
        description = "Tactical Highlow High Leftlean",
        animationDict = "anim@tactical_highlow_high_leftlean",
        animationName = "high_leftlean_clip",
        menu = "male"
    },
    {
        label = "highlow4",
        description = "Tactical Highlow Low Leftlean",
        animationDict = "anim@tactical_highlow_low_leftlean",
        animationName = "low_leftlean_clip",
        menu = "male"
    },
    -- Add more presets here if needed
}

Woman

Place anim@kneeling_stare.ycd, in the stream/femaleanimation folder, you can find the files here

Config.animationpresets = {
    {
        label = "kneelstare1",
        description = "Kneeling Stare",
        animationDict = "anim@kneeling_stare",
        animationName = "kneeling_stare_clip",
        menu = "female"
    },
    -- Add more presets here if needed
}

Men & Woman

Place all YCD files in the stream/maleanimation folder, you can find the files here

Place anim@kneeling_stare.ycd, in the stream/femaleanimation folder, you can find the files here

Config.animationpresets = {
    {
        label = "aimkneel",
        description = "Tactical Kneel Aiming",
        animationDict = "anim@tactical_kneel_aiming",
        animationName = "kneel_aiming_clip",
        menu = "male"
    },
    {
        label = "riflerelax1",
        description = "Tactical Collapsed Lowready",
        animationDict = "anim@male_tactical_collapsed_lowready",
        animationName = "collapsed_lowready_clip",
        menu = "male"
    },
    {
        label = "riflerelax2",
        description = "Tactical Highready Relaxed",
        animationDict = "anim@male_tactical_highready_relaxed",
        animationName = "highready_relaxed_clip",
        menu = "male"
    },
    {
        label = "highlow3",
        description = "Tactical Highlow High Leftlean",
        animationDict = "anim@tactical_highlow_high_leftlean",
        animationName = "high_leftlean_clip",
        menu = "male"
    },
    {
        label = "highlow4",
        description = "Tactical Highlow Low Leftlean",
        animationDict = "anim@tactical_highlow_low_leftlean",
        animationName = "low_leftlean_clip",
        menu = "male"
    },
    {
        label = "kneelstare1",
        description = "Kneeling Stare",
        animationDict = "anim@kneeling_stare",
        animationName = "kneeling_stare_clip",
        menu = "female"
    },
    -- Add more presets here if needed
}

Last updated