Search the Community
Showing results for tags 'sound shells'.
Found 1 result
-
The sound of shells falling on different surfaces (Test)
ducphuli posted a topic in ARMA 3 - ADDONS & MODS: DISCUSSION
I play Arma 3 but there hasn't been a mod (in decades) that makes the sound of bullet casings falling on different surfaces. 😦 I'm learning about this but I think my predecessors have learned about this as well, that's because BI is pretty limited on this after decades. 1. Here is a bit of my application, but how do I deal with water, rain, metal, wood.... ? 2. I thought of another way, but I don't know if it works: Get footsteps on different surfaces as a conditional event handler to trigger the sound of shells falling on different surfaces. (Will this work guys?) class CfgSoundShaders { class MDV_bulletcasing_param_SoundShader { range = 10; rangeCurve[] = {{0, 1}, {5, 0.51}, {10, 0}}; limitation = 1; }; class MDV_bulletcasing_mglink_SoundShader : MDV_bulletcasing_param_SoundShader { volume = "1 * (1-sea))"; limitation = 1; }; class MDV_bulletcasing_soft_SoundShader : MDV_bulletcasing_param_SoundShader { volume = "1 * (1-houses) * (1-interior))"; limitation = 1; }; class MDV_bulletcasing_hard_SoundShader : MDV_bulletcasing_param_SoundShader { volume = "1 * houses * (1-interior))"; limitation = 1; }; class MDV_bulletcasing_interior_SoundShader : MDV_bulletcasing_param_SoundShader { volume = "1.05 * interior"; limitation = 1; }; //??? class MDV_bulletcasing_water_SoundShader : MDV_bulletcasing_param_SoundShader { volume = "1 - sea"; limitation = 1; }; //??? class MDV_bulletcasing_interior_Vehicle_SoundShader : MDV_bulletcasing_param_SoundShader { volume = 1.2; range = 3; rangeCurve[] = {{0, 1},{1, 1}, {3, 0}}; limitation = 1; }; class MDV_bulletcasing_exterior_Vehicle_SoundShader : MDV_bulletcasing_param_SoundShader { volume = 0.12; limitation = 1; }; }; Thanks for watching, I'm looking forward to any help from all of your answers