![]() |
|
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 |
#21
|
||||
|
||||
![]() Quote:
Quote:
Quote:
![]() Quote:
![]() Last edited by von Pilsner; 08-23-2012 at 07:33 PM. |
#22
|
|||
|
|||
![]()
What you want then , is a wuss simulator . What I want is te AI to actually stick around and fight . To the death . There's already far too much buggering off in the offline missions .
|
#23
|
||||
|
||||
![]()
It would be nice if they AI reacted according to skill level, a novice pilot cutting out before a veteran would... of course this is a low priority item...
__________________
|
#24
|
|||
|
|||
![]()
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. |
#25
|
||||
|
||||
![]() Quote:
Quote:
![]()
__________________
|
#26
|
|||
|
|||
![]()
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. |
![]() |
|
|