![]() |
|
IL-2 Sturmovik: Cliffs of Dover Latest instalment in the acclaimed IL-2 Sturmovik series from award-winning developer Maddox Games. |
![]() |
|
Thread Tools | Display Modes |
|
#1
|
|||
|
|||
![]()
You are simply making things up (you have no idea why we object to the suggestion so you make one up), it seems like a waste of the developers time and resources... Perhaps those mythical CloD modders can get the screams working for you and Tav.
|
#2
|
|||
|
|||
![]() Quote:
Last edited by PotNoodles; 08-23-2012 at 06:44 PM. |
#3
|
|||
|
|||
![]() Quote:
![]() If you don't even explain why you object the suggestion it's obvious that people have to assume if you don't say anything useful... If you have a valid point against implementing his suggestion - how about actually posting it? I posted some cons and pros. I even responded to your post because, to me, it felt very much useless. Bravery and Discipline doesn't really offer much valuable feedback in game. Sometimes you can't tell if the AI is just stupid or under the effect of B&D. I also added that it's not just about screams and gore. But about valuable feedback. And if you post such stuff: "I have no desire for screaming bomber crews, did they scream a lot?" - it's obvious what your main point is. But do you seriously believe that a crew didn't interact? Voiced incoming bogies, damage to the plane, fire, etc? Historical documents aside - I'm very much sure you know what the answer would be... ![]() |
#4
|
||||
|
||||
![]() Quote:
Quote:
Quote:
![]() Quote:
![]() Last edited by von Pilsner; 08-23-2012 at 07:33 PM. |
#5
|
|||
|
|||
![]()
Up 2 posts from my initial post is nothing you posted.
And if you're talking about your second reply, why not quote your paradoxon as a whole: Quote:
Quote:
Quote:
This lack of innovation openness is killing CloD and probably killed it. People are demanding useless stuff that costs a ton of rescources to implement and refine (colors anyone?) but the game itself is completely VOID of innovation. Nay sayers everywhere. Killing every spark of innovation and argueing over plane performance so their side wins. The game still feels lifeless and dead though. If things stay this way then BoM will be the first and last expansion for sure... ![]() Last edited by Madfish; 08-23-2012 at 08:04 PM. |
#6
|
|||
|
|||
![]()
A few minutes work, here is a sound player in .cs form. You can call it from within the mission script quite easily.
The wav files go here: Steam\steamapps\common\il-2 sturmovik cliffs of dover\parts\Sounds If you use the loop be sure and kill the sound when the pilot dies or the mission ends. Code:
public void playSound(string sound, int trigger) { try { SoundPlayer singleSound = new SoundPlayer("parts\\Sounds\\" + sound + ".wav"); if ((trigger < 0) || (trigger > 2)) { trigger = 2; } if (trigger == 0) // To play a sound { singleSound.Play(); } if (trigger == 1) // To loop a sound { singleSound.PlayLooping(); } if (trigger == 2) // to stop looping { singleSound.Stop(); } } catch (Exception e) { } } and / or Check the amount of damage done to pick more intense screams (or sobs). EDIT: call the function like this: Code:
playSound("scream01", 0); ![]() Last edited by von Pilsner; 08-23-2012 at 08:51 PM. |
![]() |
|
|