-
Posts
648 -
Joined
-
Last visited
Content Type
Profiles
Forums
Events
Everything posted by bones1014
-
STREAM DECK PROFILES LIBRARY
bones1014 replied to ZQuickSilverZ's topic in PC Hardware and Related Software
I just take a screen shot of the modules on the bottom of the main DCS screen and then crop the images, save, and apply them as images. -
They could be but since they spring to the center would it work well?
-
Yes
-
You could just fire them off.
-
while piloting with the copilot MFCD's exported (which is wrong) I saw something strange floating around the cockpit. any idea what it is? I don't think it's part of any HMD or anything. maybe something to do with attempting to export the MFDs
-
Yep I'm in the same boat as everyone else. I can see the pilot left screen exported but the copilot right overrides anything I try to do to export the pilot right display.
-
Starting work on an export file for the Apache. *edit looks like it's already done in a different post. disregard.* Ah-64D_clickabledata.csv
-
I'm new to the software but that sounds like a cool feature. I looked for a bit but I couldn't see how to do it.
-
Alpha Grip thumb wheel and analog stick uses
bones1014 replied to X-31_VECTOR's topic in VIRPIL Controls
I don't have the stick yet. It's almost here! I was just going to use that thumb stick for the TMS switch in the Viper. -
Virpil Controls - Prices Increasing from 2022/03/14
bones1014 replied to HC_Official's topic in VIRPIL Controls
Glad I ordered my stick last month! -
Streamdeck Plugin with DCS BIOS beta
bones1014 replied to ctytler's topic in PC Hardware and Related Software
Not sure what else there is to do man. It's pretty simple. I have plugins installed per the instructions -
you can view the cockpit devices in the model viewer. It's located in DCS World OpenBeta/bin/ModelViewer2 load up the cockpit of your choice and then look for the device.
-
ViLA - Control your Virpil LEDs from in-game events!
bones1014 replied to charliefox2's topic in VIRPIL Controls
Does this work pretty well for those that have tried it? -
Streamdeck Plugin with DCS BIOS beta
bones1014 replied to ctytler's topic in PC Hardware and Related Software
I'm having the same issue. I don't know where the json files are stored. DCS Bios is working. I can see it working in the web interface. -
Streamdeck Plugin with DCS BIOS beta
bones1014 replied to ctytler's topic in PC Hardware and Related Software
I have DCS Bios installed and working. I can see values change in the control reference in the browser. However I can't find the install location that contains the json files. Any tips on finding it? It's not in the saved games/scripts folder. I uninstalled and reinstalled DCS Bios and I don't have a DCS Bios folder in my scripts folder. -
I've found that the software works better with Windows 11 than 10. Sent from my SM-G781U using Tapatalk
-
Yea works great!
-
@bailey how about this for the A-4 Radar? For some reason the 0 value was giving me -0 which doesn't make a lick of sense hence that extra if/then to make it a regular 0. function ExportScript.radar_mode_and_tilt(mainPanelDevice) --[120] = "%0.4f", --AN/APG-53A Radar Mode Switch {0.1,0,0.4} --[122] = "%0.4f", --Radar Antenna Tilt Switch {0.4,0,1} local radar_mode if mainPanelDevice:get_argument_value(120) > 0 and mainPanelDevice:get_argument_value(120) < 0.2 then --0.1 radar_mode = "STBY" elseif mainPanelDevice:get_argument_value(120) > 0.1 and mainPanelDevice:get_argument_value(120) < 0.3 then --0.2 radar_mode = "SRCH" elseif mainPanelDevice:get_argument_value(120) > 0.2 and mainPanelDevice:get_argument_value(120) < 0.4 then --0.3 radar_mode = "TC" elseif mainPanelDevice:get_argument_value(120) > 0.3 then radar_mode = "A/G" else radar_mode = "OFF" end local radar_tilt if ExportScript.Tools.round(mainPanelDevice:get_argument_value(122), 2) < 0.36 or ExportScript.Tools.round(mainPanelDevice:get_argument_value(122), 2) > 0.44 then radar_tilt = ((ExportScript.Tools.round(mainPanelDevice:get_argument_value(122), 2) * 25 ) - 10) * -1 else radar_tilt = 0 end if radar_tilt == -0 then radar_tilt = 0 end
-
I'll work with that.
-
@Bailey I was using your fuel flow readout for the F-16. It works mostly except for skipping over the 7000- 7900 fuel flow range. The 1000's place stays at 6k through both the 6k and 7k ranges.
-
@bailey I was trying to make the A-4 radar tilt angle better by making it a continuous range instead of set at 5 deg increments. I haven't thought up a way to do this yet. What is your technique? Sent from my SM-G781U using Tapatalk
-
It moves for me it just doesn't do anything. Sent from my SM-G781U using Tapatalk