Singleplayer

How to install:

1. Use Jennie's custom anims mod add-on folder.
https://www.gta5-mods.com/misc/custom-animations-add-on-customanims

2. Drag the .ycd files to clip_amb@.rpf file.

3. Put this line to menyoostuff/favoriteanims.xml

	<Anim dict="anim@hlstr_7360_walk" name="holster_walk" />
    	<Anim dict="anim@hlstr_7360_hold" name="holster_stop" />
    	<Anim dict="anim@hlstr_7360_torch" name="flsh_ps" />
    	<Anim dict="anim@holster_walk" name="holster_walk" />
    	<Anim dict="anim@holster_hold_there" name="holster_hold" />
   	<Anim dict="anim@holster_walk_torch" name="flash_ps" />
    	<Anim dict="anim@k9_pose" name="hug_dog" />
	<Anim dict="anim@male@prep_gears" name="prep_gears_clip" />

DPEMOTES USERS ON FIVEM: 

NOTE: For prop placement, please use this guide
https://forum.cfx.re/t/how-to-menyoo-to-dpemotes-conversion-streaming-custom-add-on-props/4775018

Place the ycd files into this folder:

resources/dpemotes-master/streams 

Then copy this line into your AnimationList.lua 

["hlstr7360walk"] = {
        "anim@hlstr_7360_walk",
        "holster_walk",
        "Holster Walk",
        AnimationOptions = {
            EmoteLoop = true,
            EmoteMoving = false,
        }
    },
["hlstr7360hold"] = {
        "anim@hlstr_7360_hold",
        "holster_stop",
        "Holster Stop",
        AnimationOptions = {
            EmoteLoop = true,
            EmoteMoving = false,
        }
    },
["hlstr7360torch"] = {
        "anim@hlstr_7360_torch",
        "flsh_ps",
        "Flsh Ps",
        AnimationOptions = {
            EmoteLoop = true,
            EmoteMoving = false,
        }
    },
["holsterwalk"] = {
        "anim@holster_walk",
        "holster_walk",
        "Holster Walk",
        AnimationOptions = {
            EmoteLoop = true,
            EmoteMoving = false,
        }
    },
["holsterholdthere"] = {
        "anim@holster_hold_there",
        "holster_hold",
        "Holster Hold",
        AnimationOptions = {
            EmoteLoop = true,
            EmoteMoving = false,
        }
    },
["holsterwalktorch"] = {
        "anim@holster_walk_torch",
        "flash_ps",
        "Flash Ps",
        AnimationOptions = {
            EmoteLoop = true,
            EmoteMoving = false,
        }
    },
["k9pose"] = {
        "anim@k9_pose",
        "hug_dog",
        "Hug Dog",
        AnimationOptions = {
            EmoteLoop = true,
            EmoteMoving = false,
        }
    },
["maleprepgears"] = {
        "anim@male@prep_gears",
        "prep_gears_clip",
        "Prep Gears",
        AnimationOptions = {
            EmoteLoop = true,
            EmoteMoving = false,
        }
    },