Jump to content

Recommended Posts

Posted (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 by Vinc_Vega

Regards, Vinc

real life: Royal Bavarian Airforce

online: VJS-GermanKnights.de

[sIGPIC][/sIGPIC]

Posted

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

 

 

Posted

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

 

 

  • 1 year later...
Posted (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

image.png

Edited by slowmover

[sIGPIC][/sIGPIC]

Posted
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?

Posted (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 by Rapti
Posted (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 by Rapti
  • Like 1
  • Recently Browsing   0 members

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