Jump to content
The simFlight Network Forums

Recommended Posts

Posted

Hello John,

I have attached several items: 1. Windows Sound - the sound bar from Windows 11, 2. Sound.ini - the sound entries in FSUIPC7.ini, 3. MSFS Sound Assignment - from MSFS settings, 4. MSFS Sound Volume - the volume settings in MSFS, 5. Landing.log - the log, 6. Landing.lua - the Lua file, 7. 2000.wav - a sample wave file in C:\FSUIPC7\Callouts.

No matter what I do, I can't hear the altitude callouts. I use a headset to listen to my MSFS on Windows 11. I can hear every other sound - engines, gear, ATC voices, etc. but no callouts.

Can you help trying to find why no sound. There is even a 500 ft callout from the aircraft's panel.exe file that I can hear.

Windows Sound.png

MSFS Sound Assignment.png

MSFS Sound Volume.png

Sound.ini Landing.log Landing.lua

Posted

sound.adjust takes a reference (returned from sound.play or playloop), not a device number.

If its just a sound issue, create a simple lua to test the sound, i.e

sound.path("C:\FSUIPC7\Callouts")
ipc.log("Playing sounds on device 4: " .. sound.device(4))
ref=sound.play("2000",4)
sound.adjust(ref, 100)
ref=sound.play("1000",4)
sound.adjust(ref, 100)
ref=sound.play("500",4)
sound.adjust(ref, 100)
ref=sound.play("400",4)
sound.adjust(ref, 100)
ref=sound.play("300",4)
sound.adjust(ref, 100)
ref=sound.play("200",4) 
sound.adjust(ref, 100)
ref=sound.play("100",4)
sound.adjust(ref, 100)
ref=sound.play("50",4) 
sound.adjust(ref, 100)
ref=sound.play("40",4)
sound.adjust(ref, 100)
ref=sound.play("30",4)
sound.adjust(ref, 100)
ref=sound.play("20",4)
sound.adjust(ref, 100)
ref=sound.play("10",4)

Then assign that to a button. Also test on other sound devices (you could make the device number a parameter, or wrap it in a loop to iterate over devices 0-6.
Do you hear anything on any device?

Also try setting a Log->Custom value of x20. This should add additional logging on sounds.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use. Guidelines Privacy Policy We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.