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@radio_pose_3" name="radio_holding_gun" />
    	<Anim dict="anim@rifle_megaphone" name="rifle_holding_megaphone" />
    	<Anim dict="anim@sniper_prone" name="prone_bipod" />
    	<Anim dict="anim@rifle_pose_holding" name="holding_helmet" />
    	<Anim dict="anim@hitman_pose" name="prep_supp" />

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 

["radiopose3"] = {
        "anim@radio_pose_3",
        "radio_holding_gun",
        "Radio Pose 3",
        AnimationOptions = {
            EmoteLoop = true,
            EmoteMoving = false,
        }
    },
["riflemegaphone"] = {
        "anim@rifle_megaphone",
        "rifle_holding_megaphone",
        "Rifle Holding Megahpone",
        AnimationOptions = {
            EmoteLoop = true,
            EmoteMoving = false,
        }
    },
["sniperprone"] = {
        "anim@sniper_prone",
        "prone_bipod",
        "Sniper Prone Bipod",
        AnimationOptions = {
            EmoteLoop = true,
            EmoteMoving = false,
        }
    },
["rilfeposeholding"] = {
        "anim@rifle_pose_holding",
        "holding_helmet",
        "Rifle Holding Helmet",
        AnimationOptions = {
            EmoteLoop = true,
            EmoteMoving = false,
        }
    },
["hitmanpose"] = {
        "anim@hitman_pose",
        "prep_supp",
        "Hitman Pose",
        AnimationOptions = {
            EmoteLoop = true,
            EmoteMoving = false,
        }
    },