VTE Sounds
Moderators: Lone Wolf, Snake Man
-
- Newbie
- Posts: 5
- Joined: 2005-11-28 19:40:25
- Location: Ajka, Hungary
VTE Sounds
I making the weapon sounds for VTE ArmA and I need your opinions about them.
Thanks
-
- Major
- Posts: 241
- Joined: 2007-09-28 11:38:55
- Location: Down Under
-
- Commander-In-Chief
- Posts: 9832
- Joined: 2000-07-31 22:01:01
- Gaming Interests: ArmA, ArmA 2, Falcon 4.0 and OFP.
- Editing Interests: All, I (try) to edit everything.
- Location: PMC
IF YOU WANT TO KEEP USING PMC WEBSITES INCLUDING THIS FORUM, DOWNLOAD ADDONS, READ TUTORIALS, ETC, PLEASE HELP BY SUPPORTING PMC.
Support PMC
Please help to keep PMC websites online, if domains are let to expire then it will be "game over, man!".
-
- Recruit
- Posts: 36
- Joined: 2007-10-03 07:51:32
-
- Major
- Posts: 241
- Joined: 2007-09-28 11:38:55
- Location: Down Under
-
- Commander-In-Chief
- Posts: 9832
- Joined: 2000-07-31 22:01:01
- Gaming Interests: ArmA, ArmA 2, Falcon 4.0 and OFP.
- Editing Interests: All, I (try) to edit everything.
- Location: PMC
Not sure if there is tutorial made for basic sound editing, perhaps tpM can help you with this one.Bigpickle wrote:can someone point me towards a tutorial on how to sound mod or arma?
IF YOU WANT TO KEEP USING PMC WEBSITES INCLUDING THIS FORUM, DOWNLOAD ADDONS, READ TUTORIALS, ETC, PLEASE HELP BY SUPPORTING PMC.
Support PMC
Please help to keep PMC websites online, if domains are let to expire then it will be "game over, man!".
-
- Recruit
- Posts: 36
- Joined: 2007-10-03 07:51:32
-
- Commander-In-Chief
- Posts: 9832
- Joined: 2000-07-31 22:01:01
- Gaming Interests: ArmA, ArmA 2, Falcon 4.0 and OFP.
- Editing Interests: All, I (try) to edit everything.
- Location: PMC
IF YOU WANT TO KEEP USING PMC WEBSITES INCLUDING THIS FORUM, DOWNLOAD ADDONS, READ TUTORIALS, ETC, PLEASE HELP BY SUPPORTING PMC.
Support PMC
Please help to keep PMC websites online, if domains are let to expire then it will be "game over, man!".
-
- Commander-In-Chief
- Posts: 9832
- Joined: 2000-07-31 22:01:01
- Gaming Interests: ArmA, ArmA 2, Falcon 4.0 and OFP.
- Editing Interests: All, I (try) to edit everything.
- Location: PMC
Infantry weapons:
<classname>_fire.wss
<classname>_reload.wss
Vehicles:
engine_<classname>.wss
treads_<classname>.wss (naturally only tracked vehicles).
The <classname> actually doesn't mean full tag+name, but just the name, heh. OK lets bring in few examples so we are clear.
Classname: VTE_m16a1
Name: Colt M16A1
Firing sound file name: M16a1_fire.wss
Reload sound file name: M16a1_reload.wss
Classname: VTE_ak47
Name: AK-47
Firing sound file name: Ak47_fire.wss
Reload sound file name: Ak47_reload.wss
Classname: VTE_m113
Name: M113 APC
Engine sound file name: engine_m113.wss
Treads sound file name: treads_m113.wss
Classname: VTE_t55
Name: T-55 Tank
Engine sound file name: engine_t55.wss
Treads sound file name: treads_t55.wss
I'm hoping this way its very easy to identify any sounds or choosing a sound file name when making a new one.
Also I mean with this that all infantry weapons have personal sounds, so we are NOT going to use M16a1 sound for M16, CAR-15 and Stoner for example. Of course the sounds from M16 and CAR-15 arent that much different, however the sounds take.. what 100kb in space and it surely creates immersion when you can hear the small difference in the sound.
The <name>_fire and engine_<name> difference in weapons and vehicles, I was thinking about that if they should be same, like <name>_engine. Dunno, at the moment all the vehicle sounds start with the engine and treads first. Not really a big deal, but perhaps can be changed.
IF YOU WANT TO KEEP USING PMC WEBSITES INCLUDING THIS FORUM, DOWNLOAD ADDONS, READ TUTORIALS, ETC, PLEASE HELP BY SUPPORTING PMC.
Support PMC
Please help to keep PMC websites online, if domains are let to expire then it will be "game over, man!".
-
- Commander-In-Chief
- Posts: 9832
- Joined: 2000-07-31 22:01:01
- Gaming Interests: ArmA, ArmA 2, Falcon 4.0 and OFP.
- Editing Interests: All, I (try) to edit everything.
- Location: PMC
Re: VTE Sounds
To recap, here is the existing sound config from our terrains:
Code: Select all
/*
class CfgEnvSounds {};
snake attempt to create name environmental sounds
quick tutorial for VTE environmental sounds VTE_sounds\Environment\
JungleOcean1 = standard small waves, short 0:05s.
JungleOcean2 = bird sounds? no waves?, long 0:31s.
JungleOcean3 = insects, waves/stream, long 0:28s.
JungleRain1 = sharp heavy rain, electric raindrops, short 0:04s.
JungleRain2 = smoother heavy rain, raindrops on ground, short 0:09s.
JungleRain3 = soothing slow rain, big raindrops on leafs, short 0:07s.
JungleRain4 = massive thunder sound, long 1:30s (NO RAINDROPS sounds).
*/
class CfgEnvSounds
{
class Default
{
name = $STR_CFG_ENVSOUNDS_DEFAULT;
sound[] = {$DEFAULT$, 0, 1};
soundNight[] = {$DEFAULT$, 0, 1};
};
class Rain
{
name = "Rain";
sound[] = {"\vte_sounds\environment\junglerain3.wss", 0.05, 1}; // 0.006 (ofp had 0.05).
soundNight[] = {"", 0, 1};
volume = "rain*(1-night)*(1-forest)";
};
class RainNight
{
name = "RainNight";
sound[] = {"\vte_sounds\environment\junglerain3.wss", 0.05, 1}; // 0.006 (ofp had 0.05).
soundNight[] = {"", 0, 1};
volume = "rain*(1-forest)*night";
};
class RainForest
{
name = "RainForest";
sound[] = {"\vte_sounds\environment\junglerain3.wss", 0.05, 1}; // 0.006 (ofp had 0.05).
soundNight[] = {"", 0, 1};
volume = "rain*forest";
};
class RainHouses
{
name = "RainHouses";
sound[] = {"\vte_sounds\environment\junglerain3.wss", 0.05, 1}; // 0.006 (ofp had 0.05).
soundNight[] = {"", 0, 1};
volume = "rain*houses";
};
class Sea
{
name = "Sea";
sound[] = {"\vte_sounds\environment\jungleocean3.wss", 0.05, 1}; // 0.006 (ofp had 0.05).
soundNight[] = {"", 0, 1};
volume = "sea*(1-night)";
};
class SeaNight
{
name = "SeaNight";
sound[] = {"\vte_sounds\environment\jungleocean3.wss", 0.05, 1}; // 0.006 (ofp had 0.05).
soundNight[] = {"", 0, 1};
volume = "sea*night";
};
class Meadows
{
name = "Meadows";
sound[] = {"\vte_sounds\environment\jungleambience3.wss", 0.05, 1}; // 0.0006 (ofp had 0.05).
volume = "meadow*(1-rain)*(1-night)";
};
class MeadowsNight
{
name = "Meadows night";
sound[] = {"\vte_sounds\environment\junglenight3.wss", 0.05, 1}; // 0.0098 (ofp had 0.05).
volume = "meadow*(1-rain)*night";
};
class Trees
{
name = "Trees";
sound[] = {"\vte_sounds\environment\jungleambience3.wss", 0.05, 1}; // 0.0006 (ofp had 0.05).
volume = "trees*(1-rain)*(1-night)";
};
class TreesNight
{
name = "Trees night";
sound[] = {"\vte_sounds\environment\junglenight3.wss", 0.05, 1}; // 0.009 (ofp had 0.05).
volume = "trees*(1-rain)*night";
};
class Hills
{
name = "Hills";
sound[] = {"\vte_sounds\environment\jungleambience3.wss", 0.05, 1}; // 0.0006 (ofp had 0.05).
volume = "hills*(1-night)";
};
class HillsNight
{
name = "HillsNight";
sound[] = {"\vte_sounds\environment\junglenight3.wss", 0.05, 1}; // db-80, 1
soundNight[] = {"", 0, 1};
volume = "hills*night";
};
class Wind
{
name = "Wind";
sound[] = {"", 0.000177828, 1};
volume = "(1-hills)*windy*0.5";
};
};
Any suggestions for better values?
IF YOU WANT TO KEEP USING PMC WEBSITES INCLUDING THIS FORUM, DOWNLOAD ADDONS, READ TUTORIALS, ETC, PLEASE HELP BY SUPPORTING PMC.
Support PMC
Please help to keep PMC websites online, if domains are let to expire then it will be "game over, man!".
-
- Captain
- Posts: 196
- Joined: 2006-04-02 20:42:57
- Location: Belgium
Re: VTE Sounds
I think I didn't hear yet mosquitoes flying close to your ears for exemple, witch is kinda common in nam forests (bullets also

Anyway, it's all a question of balance between the sounds and for that I trust in our beloved sound makers. If you hear the parrot when in a firefight, sumfin is just wrong.