DaveSCUSA Posted September 25 Report Posted September 25 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. 2000.wav Sound.ini Landing.log Landing.lua
John Dowson Posted September 25 Report Posted September 25 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.
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now