Konny wrote:Hi Jörg,
Can you please also show me the relevant part of your blackbox file?
Sure.
First the debug part. (Just for info)
Code: Select all
<!-- debug events -->
<!-- ============ -->
<event var="flightstate" value="0" method="equal" multiple="0" text="debug:Flightstate 0" />
<event var="flightstate" value="1" method="equal" multiple="0" text="debug:Flightstate 1" />
<event var="flightstate" value="2" method="equal" multiple="0" text="debug:Flightstate 2" />
<event var="flightstate" value="3" method="equal" multiple="0" text="debug:Flightstate 3" />
<event var="flightstate" value="4" method="equal" multiple="0" text="debug:Flightstate 4" />
<event var="flightstate" value="5" method="equal" multiple="0" text="debug:Flightstate 5" />
<event var="flightstate" value="6" method="equal" multiple="0" text="debug:Flightstate 6" />
<event var="flightstate" value="7" method="equal" multiple="0" text="debug:Flightstate 7" />
Then the landing applause which was played shortly after takeoff (maybe they were happy to fly finally

)
Code: Select all
<!-- landing applause -->
<!-- ================ -->
<combination text="Landed" sound="snd_applause.wav" multiple="0" >
<event var="flightstate" value="3" method="equal" multiple="0" /> <!-- flightstate=3 (landed) -->
<event var="groundspeed" value="1" method="greater" multiple="0" />
</combination>
These were omitted (except the first one, but there was no sound). Maybe the conditions are not set up properly.
EDIT: My fault. The filenames were misspelled. So no bug here.
Code: Select all
<!-- cockpit to crew announcements -->
<!-- ============================= -->
<combination text="Cpt:Prepare for t/o" sound="voice/prepareto.wav" multiple="0" >
<event var="flightstate" value="1" method="equal" multiple="0" /> <!-- flightstate=1 (taxi) -->
<event var="landinglights" value="1" method="equal" multiple="0" />
</combination>
<combination text="Cpt:Prepare for arrival" sound="voice/preparearrival.wav" multiple="0" >
<event var="flightstate" value="7" method="equal" multiple="0" /> <!-- flightstate=7 (descent) -->
<event var="gear" value="1" method="equal" multiple="0" />
<event var="altitudeagl" value="4000" method="less" multiple="1" />
</combination>
<combination text="Cpt:Secure doors" sound="voice/cpt_securedoors.wav" multiple="0" >
<event var="flightstate" value="0" method="equal" multiple="0" /> <!-- flightstate=0 (boarding) -->
<event var="groundspeed" value="1" method="greater" multiple="0" />
</combination>
The cruise announcement was played after 9 minutes of cruise flight.
Code: Select all
<combination text="FA:Cruise announcement" sound="voice/fa_cruise.wav" multiple="0" >
<event var="flightstate" value="6" method="equal" multiple="0" /> <!-- flightstate=6 (cruise) -->
<event var="groundspeed" value="250" method="greater" multiple="0" />
<event var="altitudestd" value="11000" method ="greater" multiple="0" />
<event var="vs" value="100" method="less" multiple="0" />
</combination>
Sincerely
Jörg