Jump to content

Recommended Posts

Posted

I am using speakers for the main game audio out, and using headphones for all radio and communications. All is working well, Jester in the F-4E and ground crew both communicate via intercom in the headset. 

In the Mi-24 Hind, petrovich does not seem to do this, and his audio comes from the speakers instead of the headset, which makes him difficult to hear. I can not find a setting anywhere to change this. Am I missing something on my end or is this a bug? Attached is the DCS log 

dcs.log

  • Like 1
Posted
5 hours ago, skeebop said:

In the Mi-24 Hind, petrovich does not seem to do this, and his audio comes from the speakers instead of the headset, which makes him difficult to hear. I can not find a setting anywhere to change this.

I don't have this problem, I hear Petro whisper in my headphones, while the engines roar through my speakers (tested in SP and MP).

I'm seeing an intercom-related issue in your log:

2025-01-18 05:09:08.368 ERROR   LuaGUI (Main): [string "./MissionEditor/modules/mul_voicechat.lua"]:814: attempt to index local 'pIntercom' (a nil value)

Since I for one don't have this error in my log, you should start from there. Here's an excerpt of the mul_voicechat.lua script:

		if handler ~= voice_chat.RadioHandlersSingletons.INTERCOM_SOUND_VOLUME then
			local intercom_indication = voice_chat.getIntercomIndication()
			local pIntercom = guiRadiosById["intercom"]   <--- the issue probably starts here
			
			if intercom_indication == 3 then
				pIntercom.sPTT:setSkin(sPTTredSkin)
				tbHotMic:setSkin(tbHotMicRedSkin)
			elseif intercom_indication == 1 then
				pIntercom.sPTT:setSkin(sPTTyellowSkin)
				tbHotMic:setSkin(tbHotMicYellowSkin)
			elseif intercom_indication == 2 then
				pIntercom.sPTT:setSkin(sPTTgreenSkin)
				tbHotMic:setSkin(tbHotMicGreenSkin)
			elseif intercom_indication == 0 then
				pIntercom.sPTT:setSkin(sPTTgraySkin)     <---- line 814
				tbHotMic:setSkin(tbHotMicGreySkin)
			end
		end

 

---

Posted (edited)

It's as if DCS couldn't find the radio called "intercom".

Have you configured an extra radio unit in the Mi-24P Voice Chat Radio Options menu, or customized your Mi-24P radio somehow?

Edited by Flappie
  • Like 1

---

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...