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@michael_prep_rifle" name="prep rifle" />
    	<Anim dict="anim@char_rld_pistol" name="pistol_reload" />
    	<Anim dict="anim@char_pistol_pose" name="pistol_pose" />
    	<Anim dict="anim@char_shotgun_idle" name="shotgun_pose" />

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 

["michaelpreprifle"] = {
        "anim@michael_prep_rifle",
        "prep rifle",
        "Prep Rifle",
        AnimationOptions = {
            EmoteLoop = true,
            EmoteMoving = false,
        }
    },
["charrldpistol"] = {
        "anim@char_rld_pistol",
        "pistol_reload",
        "Pistol Reload",
        AnimationOptions = {
            EmoteLoop = true,
            EmoteMoving = false,
        }
    },
["charpistolpose"] = {
        "anim@char_pistol_pose",
        "pistol_pose",
        "Pistol Pose",
        AnimationOptions = {
            EmoteLoop = true,
            EmoteMoving = false,
        }
    },
["charshotgunidle"] = {
        "anim@char_shotgun_idle",
        "shotgun_pose",
        "Shotgun Pose",
        AnimationOptions = {
            EmoteLoop = true,
            EmoteMoving = false,
        }
    },