-
Posts
648 -
Joined
-
Last visited
Content Type
Profiles
Forums
Events
Everything posted by bones1014
-
I have found that the A-4 radar does not respond to the stream deck properly. It registers changes in the position when you press the stream deck button and rotate the knobs in game but the game only recognizes the rotation in game via mouse or keyboard. Sent from my SM-G781U using Tapatalk
-
Community Keybinds Project 22.1.22 Release
bones1014 replied to Munkwolf's topic in PC Hardware and Related Software
It's working just fine for me. Great stuff! -
Community Keybinds Project 22.1.22 Release
bones1014 replied to Munkwolf's topic in PC Hardware and Related Software
Oh I didn't see that one. [emoji848] Awesome Sent from my SM-G781U using Tapatalk -
Mongoose throttle MongoosT-50CM3 catch switch
bones1014 replied to bones1014's topic in VIRPIL Controls
I'll look into it thanks Sent from my SM-G781U using Tapatalk -
Community Keybinds Project 22.1.22 Release
bones1014 replied to Munkwolf's topic in PC Hardware and Related Software
I'm going to look into a On else Off command for the F-16 laser arm switch. If someone beats me to it that would be just fine. -
I'm not sure what to call it but the software calls it button 8. It's what makes the throttles move together. What I'm experiencing is inversion of the right throttle axis when the switch is moved. I can't find button 8 in the software to disable it. Can I and if so, how? *edit and wouldn't you know 2 seconds after posting this I found it! Here's a screen for anyone in the furture
-
If the A-4 doesn't work it wouldn't break my heart as it's just a mod. I would definitely be willing to test new tools. DCS BIOS is not something I've had to use yet.
-
I have not experienced that problem
-
What I do is once the game is running copy the A-4E-C folder from the saved games folder to the install mods/aircraft folder and then the stream deck plugin can see it.
-
Thrustmaster Cougar MFD left not working same as right
bones1014 posted a topic in Bugs and Problems
When I try to assign the corner rocker buttons on on MFD 1 to a function, for example the safety bracket, they are recognized in the control settings but when I go back to the game they do nothing. The regular square buttons on MFD 1 work just fine. Everything works like normal if I use MFD 2. The windows device manager recognizes all the button presses on both MFDs. I have done a slow repair of every file and that didn't change anything. Any ideas? -
There's an option for "All aircraft" when you're building a profile. I try using it but it gives me this error when I select it and then crashes. It would be nice to be able to use one profile instead of a separate profile for each module.
-
No they wouldn't right now. Sent from my SM-G781U using Tapatalk
-
@Bailey Feel like throwing these into your Skyhawk lua? For radar mode and tilt angle and the weapon drop interval. and yea I had them defined. Oh well you got it working. 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 = ExportScript.Tools.round(mainPanelDevice:get_argument_value(122), 1) * 5 if radar_tilt == 1 then radar_tilt = "+5" elseif radar_tilt == 2 then radar_tilt = "0" elseif radar_tilt == 3 then radar_tilt = "-5" elseif radar_tilt == 4 then radar_tilt = "-10" elseif radar_tilt == 5 then radar_tilt = "-15" else radar_tilt = "+10" end local radar_mode_and_tilt = "MODE" .. "\n" .. radar_mode .. "\n" .. "TILT" .. "\n" .. radar_tilt ExportScript.Tools.SendData(1250, radar_mode_and_tilt) end function ExportScript.drop_interval(mainPanelDevice) --[742] = "%0.2f", --AWRS Drop Interval Knob {0,0,0.9} local drop_interval = "DRP INTVL" .. "\n" .. ((ExportScript.Tools.round(mainPanelDevice:get_argument_value(742), 2) * 10) / 0.05) + 20 ExportScript.Tools.SendData(1251, drop_interval) end
-
I was doing exactly that and didn't get anything in the stream deck. [emoji36] Sent from my SM-G781U using Tapatalk
-
I'm trying to find the numbers for the nav computer. I looked in the mainpanel_init.lua and found this but putting the argument numbers in the export lua doesn't work. which file are these normally in? -- ASN-41 Navigation Computer -- current position: XX.YY{N/S} Nav_CurPos_Lat_Xnnnn = CreateGauge("parameter") Nav_CurPos_Lat_Xnnnn.arg_number = 178 Nav_CurPos_Lat_Xnnnn.input = {0.0, 1.0} Nav_CurPos_Lat_Xnnnn.output = {0.0, 1.0} Nav_CurPos_Lat_Xnnnn.parameter_name = "NAV_CURPOS_LAT_Xnnnn" Nav_CurPos_Lat_nXnnn = CreateGauge("parameter") Nav_CurPos_Lat_nXnnn.arg_number = 179 Nav_CurPos_Lat_nXnnn.input = {0.0, 1.0} Nav_CurPos_Lat_nXnnn.output = {0.0, 1.0} Nav_CurPos_Lat_nXnnn.parameter_name = "NAV_CURPOS_LAT_nXnnn" Nav_CurPos_Lat_nnXnn = CreateGauge("parameter") Nav_CurPos_Lat_nnXnn.arg_number = 180 Nav_CurPos_Lat_nnXnn.input = {0.0, 1.0} Nav_CurPos_Lat_nnXnn.output = {0.0, 1.0} Nav_CurPos_Lat_nnXnn.parameter_name = "NAV_CURPOS_LAT_nnXnn" Nav_CurPos_Lat_nnnXn = CreateGauge("parameter") Nav_CurPos_Lat_nnnXn.arg_number = 181 Nav_CurPos_Lat_nnnXn.input = {0.0, 1.0} Nav_CurPos_Lat_nnnXn.output = {0.0, 1.0} Nav_CurPos_Lat_nnnXn.parameter_name = "NAV_CURPOS_LAT_nnnXn" Nav_CurPos_Lat_nnnnX = CreateGauge("parameter") Nav_CurPos_Lat_nnnnX.arg_number = 182 Nav_CurPos_Lat_nnnnX.input = {0.0, 1.0} Nav_CurPos_Lat_nnnnX.output = {0.0, 1.0} Nav_CurPos_Lat_nnnnX.parameter_name = "NAV_CURPOS_LAT_nnnnX"
-
@Bailey started work on some things in the scooter. Radar mode and tilt angle to one tile. Need to format the output yet. 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_and_tilt = "MODE" .. "\n" .. string.format("%.1f", mainPanelDevice:get_argument_value(120)) .. "\n" .. "TILT" .. "\n" .. string.format("%.1f", mainPanelDevice:get_argument_value(122)) ExportScript.Tools.SendData(1250, radar_mode_and_tilt) end
-
I took what you previously posted and started messing with it. It's working so far!The only annoying thing is if you want to add something and you don't know all the details you have to move the Skyhawk folder each time. That extract tool is what I used to get my list of clickables. Sent from my SM-G781U using Tapatalk
-
-
I'll try that. I don't know why those switched aren't working Sent from my SM-G781U using Tapatalk