-
Posts
648 -
Joined
-
Last visited
Content Type
Profiles
Forums
Events
Everything posted by bones1014
-
Same. I don't know if it's functional or not. Any idea if we'll get the ability to interrogate in the F1-M?
-
I can duplicate your problem. I can get the switch to go to Alt hold but not ATT hold. It'll read a -1 command when you place the switch in ATT hold with the mouse. Also there are two options that you can use. One that makes the switch move up (3013) and the other down(3012). I can't find the file that defines the possible inputs. I'll keep looking. Looks like it could be an error in a lua somewhere. null
-
Known issue across all modules. Makes using MFDs at night a pain.
-
RWR & DED export to second Screen - Tainted Client
bones1014 replied to Merlin_Gr's topic in Multi-Display Bugs
It's been breaking the IC for awhile now. I used to have some screens exported but I can't anymore. Best option would be for the dev to create a unique viewport name and thus make it official. -
I'm exporting some displays to external monitors. I don't know when it started but the Jester menu isn't centered in the main gui viewport. I found an error in the JesterAI_Page.lua Line 10 should say find_viewport("GUI_MAIN_VIEWPORT") nullI included a screenshot of the way it's currently displayed and a screenshot of the lua with the error.
-
STREAM DECK PROFILES LIBRARY
bones1014 replied to ZQuickSilverZ's topic in PC Hardware and Related Software
I don't know anything more than anyone else and probably less than some. Go through these videos again and double check your install. -
STREAM DECK PROFILES LIBRARY
bones1014 replied to ZQuickSilverZ's topic in PC Hardware and Related Software
Check the following you have the Mirage-F1EE.lua in the DCS.openbeta\Scripts\DCS-ExportScript\ExportsModules folder you have the following lines in the Export.lua file -- load the DCS ExportScript for DAC and Ikarus dofile(lfs.writedir()..[[Scripts\DCS-ExportScript\ExportScript.lua]]) It's really weird if the 15E is working but nothing else is. -
STREAM DECK PROFILES LIBRARY
bones1014 replied to ZQuickSilverZ's topic in PC Hardware and Related Software
The ones I uploaded for the EE work just fine. Used it yesterday. -
STREAM DECK PROFILES LIBRARY
bones1014 replied to ZQuickSilverZ's topic in PC Hardware and Related Software
I know that Aerges changed a bunch of inputs on one of the last couple of updates. I had to remap my entire profile. The profiles you find in the user files section probably won't work anymore. I just updated what I uploaded. Try this one. It's from all my decks. F1 Mirage for upload.streamDeckProfile -
STREAM DECK PROFILES LIBRARY
bones1014 replied to ZQuickSilverZ's topic in PC Hardware and Related Software
No there's nothing strange other than how it shares a series of folders. Once you get the correct numbers in there it works fine. Mirage-F1EE.luaMirage-F1CE.lua -
STREAM DECK PROFILES LIBRARY
bones1014 replied to ZQuickSilverZ's topic in PC Hardware and Related Software
The two versions of the module have multiple files from different folders that are used which leads to the program with looking up values inside the stream deck software. The only way that I know of to find the right values is by opening the LUAs in a text or code editor and searching manually. -
I don't think the block 50 ever carried them.
-
TGP Fall line way to the left of designated point track target.
bones1014 replied to Maduce's topic in DCS: F-16C Viper
Is the alignment of the plane good to go? -
DelanClip is also an option. You can get a whole kit for 49 GBP. Head Tracking Shop - Delanclip (delanengineering.com)
-
If you start changing names of view ports you might break your integrity check. It has in the past after one of the updates tightened up the check.
-
I cannot get the Nav-flir to work for the WSO. I can get the HUD camera working fine but selecting the N-F command does nothing. Nav-flir is working for the pilot.
-
UFC stuff I tried. It's kind of intermittent in multicrew. -- SETUP DATA FROM THE UFC WSO UFC_Data_WSO = ExportScript.Tools.getListIndicatorValue(20) if UFC_Data_WSO == nil then ExportScript.Tools.SendData(82027,"NO\nDATA") else -- LEFT SIDE DESCENDING FROM THE TOP if UFC_Data_WSO.UFC_SC_01 ~= nil then ExportScript.Tools.SendData(82028,UFC_Data_WSO.UFC_SC_01) else ExportScript.Tools.SendData(82028," ") end if UFC_Data_WSO.UFC_SC_02 ~= nil then ExportScript.Tools.SendData(82029,UFC_Data_WSO.UFC_SC_02) else ExportScript.Tools.SendData(82029," ") end if UFC_Data_WSO.UFC_SC_03 ~= nil then ExportScript.Tools.SendData(82030,UFC_Data_WSO.UFC_SC_03) else ExportScript.Tools.SendData(82030," ") end if UFC_Data_WSO.UFC_SC_04 ~= nil then ExportScript.Tools.SendData(82031,UFC_Data_WSO.UFC_SC_04) else ExportScript.Tools.SendData(82031," ") end if UFC_Data_WSO.UFC_SC_05 ~= nil then ExportScript.Tools.SendData(82032,UFC_Data_WSO.UFC_SC_05) else ExportScript.Tools.SendData(82032," ") end -- THIS IS THE RADIO LINE 1 if UFC_Data_WSO.UFC_SC_06 ~= nil then ExportScript.Tools.SendData(82033,UFC_Data_WSO.UFC_SC_06) else ExportScript.Tools.SendData(82033," ") end --CENTRE DESCENDING FROM THE TOP if UFC_Data_WSO.UFC_CC_01 ~= nil then ExportScript.Tools.SendData(82034,UFC_Data_WSO.UFC_CC_01) else ExportScript.Tools.SendData(82034," ") end if UFC_Data_WSO.UFC_CC_02 ~= nil then ExportScript.Tools.SendData(82035,UFC_Data_WSO.UFC_CC_02) else ExportScript.Tools.SendData(82035," ") end if UFC_Data_WSO.UFC_CC_03 ~= nil then ExportScript.Tools.SendData(82036,UFC_Data_WSO.UFC_CC_03) else ExportScript.Tools.SendData(82036," ") end if UFC_Data_WSO.UFC_CC_04 ~= nil then ExportScript.Tools.SendData(82037,UFC_Data_WSO.UFC_CC_04) else ExportScript.Tools.SendData(82037," ") end -- THIS IS THE SCRATCHPAD -- RIGHT SIDE DESCENDING FROM THE TOP if UFC_Data_WSO.UFC_SC_12 ~= nil then ExportScript.Tools.SendData(82038,UFC_Data_WSO.UFC_SC_12) else ExportScript.Tools.SendData(82038," ") end if UFC_Data_WSO.UFC_SC_11 ~= nil then ExportScript.Tools.SendData(82039,UFC_Data_WSO.UFC_SC_11) else ExportScript.Tools.SendData(82039," ") end if UFC_Data_WSO.UFC_SC_10 ~= nil then ExportScript.Tools.SendData(82040,UFC_Data_WSO.UFC_SC_10) else ExportScript.Tools.SendData(82040," ") end if UFC_Data_WSO.UFC_SC_09 ~= nil then ExportScript.Tools.SendData(82041,UFC_Data_WSO.UFC_SC_09) else ExportScript.Tools.SendData(82041," ") end if UFC_Data_WSO.UFC_SC_08 ~= nil then ExportScript.Tools.SendData(82042,UFC_Data_WSO.UFC_SC_08) else ExportScript.Tools.SendData(82042," ") end -- THIS IS THE RADIO LINE 1 if UFC_Data_WSO.UFC_SC_07 ~= nil then ExportScript.Tools.SendData(82043,UFC_Data_WSO.UFC_SC_07) else ExportScript.Tools.SendData(82043," ") end end -------------------------
-
Seems to be working well in the Pilot seat. Great work! I've been trying to see how you did it. I found the file that lists the lines you used for the UFC data. I have no idea how to differentiate between the front and back seats. They seem to use the same lines. Something to do with this I assume. getListIndicatorValue(8)