Vinc_Vega Posted June 2, 2024 Posted June 2, 2024 (edited) @Simpit Solution: 1) Download the DCS-BIOS Nightly from https://github.com/DCS-Skunkworks/dcs-bios/releases/tag/latest 2) Go to the C:\Users\...\Saved Games\DCS.openbeta\Scripts directory and delete the DCS-BIOS folder and Export.lua (edit: don't forget to backup your Export.lua) 3) extract the content from the Nightly zip file into the C:\Users\...\Saved Games\DCS.openbeta\Scripts directory Regards, Vinc Edited June 2, 2024 by Vinc_Vega Regards, Vinc real life: Royal Bavarian Airforce online: VJS-GermanKnights.de [sIGPIC][/sIGPIC]
Simpit Posted June 2, 2024 Posted June 2, 2024 Perfect! Thanks! Will try it! Kind regards Hans Dieter Intel® Core™ Ultra 5 245KF, ASUS ROG STRIX B860-A GAMING WIFI, Mainboard, ASUS PRIME LC 240 ARGB Watercooling, Corsair DIMM 64 GB DDR5-5200 (2x 32 GB) DualKit, SAMSUNG 990 EVO Plus 2 TB, SSD, Thermaltake Toughpower GF A3 Snow 1050W, ZOTAC GeForce RTX 5060 Ti Twin Edge OC 16GB -- Windows 11, Patch: 2.9 uptodate
Simpit Posted June 2, 2024 Posted June 2, 2024 Great! Problem solved! The reason was the script-folder I had temporarily deactived to test improvements to prevent the stuttering effect. Thanks again!!! Kind regards Hans Dieter Intel® Core™ Ultra 5 245KF, ASUS ROG STRIX B860-A GAMING WIFI, Mainboard, ASUS PRIME LC 240 ARGB Watercooling, Corsair DIMM 64 GB DDR5-5200 (2x 32 GB) DualKit, SAMSUNG 990 EVO Plus 2 TB, SSD, Thermaltake Toughpower GF A3 Snow 1050W, ZOTAC GeForce RTX 5060 Ti Twin Edge OC 16GB -- Windows 11, Patch: 2.9 uptodate
slowmover Posted September 14 Posted September 14 (edited) Hello mates.Any idea why the FM volume stay at 33%volume when i have it to 0?My pot max value is 43865 not 65535.i us a B10k pot. image.png Edited September 14 by slowmover [sIGPIC][/sIGPIC]
No1sonuk Posted Sunday at 06:06 PM Posted Sunday at 06:06 PM On 9/14/2025 at 10:57 AM, slowmover said: Hello mates.Any idea why the FM volume stay at 33%volume when i have it to 0?My pot max value is 43865 not 65535.i us a B10k pot. image.png 3V supply to the pot when it should be 5V?
Rapti Posted 3 hours ago Posted 3 hours ago (edited) Hello everyone, I have a question about the laser arm switch in the F-18 This switch is actually a magnetic switch. Since I am using a normal (ON) - OFF switch for this, I would like to display the status of the switch via an LED. So when the switch is in the armed position in the simulator, the LED should light up, even though my physical switch is back in the OFF position. I already implemented this a few years ago in a button box. There was the DCS BIOS prompt: DcsBios::LED ltdRArm(0x74c4, 0x0100, PIN); This call no longer exists in the current DCS BIOS version from Skunkworks! Does anyone have any idea how I can solve this? There is basically the prompt: DcsBios::LED ltdRSw(FA_18C_hornet_LTD_R_SW_AM, PIN); However, I cannot use this in the same sketch because it addresses the same function. Edited 3 hours ago by Rapti
Rapti Posted 3 hours ago Posted 3 hours ago (edited) OK ChatGPT had the solution: How to fix it You need to give each object a unique name. For example: DcsBios::LED ltdRSwLed(FA_18C_hornet_LTD_R_SW_AM, 7); // LED output DcsBios::Switch2Pos ltdRSwSwitch("LTD_R_SW", 8); // switch input Now you have one LED object (ltdRSwLed) and one switch object (ltdRSwSwitch), no conflict. Edited 3 hours ago by Rapti 1
Recommended Posts