Custom sounds for Food

LoafeRR

New Member
So im currently making a Custom food mod with more soda cans, cereals and so on. And since ive done foleys in the past and have the equipment for it i want it to have custom sounds for when opening the cans etc.

How would i go about changeing the sounds file? Do i even do this in the config for the cans etc? Would really like some help/input on this! First ever "advanced" mod im making in DayZ and would be nice to learn something new!


This is how the sound part looks in the config and from what i can see its not as easy as just swaping out the names for the .ogg files and packing the mod!


class AnimEvents
{
class SoundWeapon
{
class openTunaCan
{
soundSet="openTunaCan_SoundSet";
id=204;
};
class pickup
{
soundSet="BoxCerealCrunchin_pickup_SoundSet";
id=797;
};
class Eating_TakeFood
{
soundSet="Eating_TakeFood_Soundset";
id=889;
};
class Eating_BoxOpen
{
soundSet="Eating_BoxOpen_Soundset";
id=893;
};
class Eating_BoxShake
{
soundSet="Eating_BoxShake_Soundset";
id=894;
};
class Eating_BoxEnd
{
soundSet="Eating_BoxEnd_Soundset";
id=895;
};
class drop
{
soundset="BoxCerealCrunchin_drop_SoundSet";
id=898;
};
};
};
};
 
Back
Top