
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@zombie_walk" name="zombie_walk_clip" />
    	<Anim dict="anim@zombie_walk_2" name="zombie_walk_2_clip" />
	<Anim dict="anim@zombie_walk_3" name="zombie_walk_3_clip" />
	<Anim dict="anim@zombie_crawl" name="zombie_crawl_clip" />
	<Anim dict="anim@arrest_crooks" name="arrest_crooks_clip" />
    	<Anim dict="anim@arrest_cop_2" name="arrest_cop_2_clip" />
    	<Anim dict="anim@arrest_cop" name="arrest_cop_clip" />
	<Anim dict="anim@rifle_car_pose" name="rifle_car_pose_clip" />
 	<Anim dict="anim@rifle_take_cover" name="rifle_take_cover_clip" />
   	<Anim dict="anim@rifle_take_cover_2" name="rifle_take_cover_2_clip" />
   	<Anim dict="anim@person_down" name="person_down_clip" />
   	<Anim dict="anim@ems_check_pulse" name="ems_check_pulse_clip" />

DPEMOTES USERS ON FIVEM: 

Place the ycd files into this folder:

resources/dpemotes-master/streams 

Then copy this line into your AnimationList.lua 

["zombiewalk"] = {
        "anim@zombie_walk",
        "zombie_walk_clip",
        "Zombie Walk",
        AnimationOptions = {
            EmoteLoop = true,
            EmoteMoving = false,
        }
    },
["zombiewalk2"] = {
        "anim@zombie_walk_2",
        "zombie_walk_2_clip",
        "Zombie Walk 2",
        AnimationOptions = {
            EmoteLoop = true,
            EmoteMoving = false,
        }
    },
["zombiewalk3"] = {
        "anim@zombie_walk_3",
        "zombie_walk_3_clip",
        "Zombie Walk 3",
        AnimationOptions = {
            EmoteLoop = true,
            EmoteMoving = false,
        }
    },
["arrestcrooks"] = {
        "anim@arrest_crooks",
        "arrest_crooks_clip",
        "Arrest Crooks",
        AnimationOptions = {
            EmoteLoop = true,
            EmoteMoving = false,
        }
    },
["arrestcop"] = {
        "anim@arrest_cop",
        "arrest_cop_clip",
        "Arrest Cop",
        AnimationOptions = {
            EmoteLoop = true,
            EmoteMoving = false,
        }
    },
["arrestcop2"] = {
        "anim@arrest_cop_2",
        "arrest_cop_2_clip",
        "Arrest Cop2",
        AnimationOptions = {
            EmoteLoop = true,
            EmoteMoving = false,
        }
    },
["riflecarpose"] = {
        "anim@rifle_car_pose",
        "rifle_car_pose_clip",
        "Rifle Car Pose",
        AnimationOptions = {
            EmoteLoop = true,
            EmoteMoving = false,
        }
    },
["rifletakecover"] = {
        "anim@rifle_take_cover",
        "rifle_take_cover_clip",
        "Rifle Take Cover",
        AnimationOptions = {
            EmoteLoop = true,
            EmoteMoving = false,
        }
    },
["rifletakecover2"] = {
        "anim@rifle_take_cover_2",
        "rifle_take_cover_2_clip",
        "Rifle Take Cover 2",
        AnimationOptions = {
            EmoteLoop = true,
            EmoteMoving = false,
        }
    },
["persondown"] = {
        "anim@person_down",
        "person_down_clip",
        "Person Down",
        AnimationOptions = {
            EmoteLoop = true,
            EmoteMoving = false,
        }
    },
["emscheckpulse"] = {
        "anim@ems_check_pulse",
        "ems_check_pulse_clip",
        "EMS Check Pulse",
        AnimationOptions = {
            EmoteLoop = true,
            EmoteMoving = false,
        }
    },
