DMarkwick Posted February 18, 2024 Posted February 18, 2024 (edited) So I bought my WW ICP, got it set up, worked no problems. Later I bought 2x MFDs with displays, also got those working. For a while I had all 3 working correctly. (I have an unconnected issue with DCS resolution, but that's another post...) However at some point recently I have lost my ICP DED display, I just get a lit background. (It continues to work correctly in BMS btw.) As I was spending time trying to understand the F-16 AG radar, I wasn't paying attention to when exactly the DED stopped displaying. You know how it is sometimes. My Export.lua looks like this: local wwtlfs=require('lfs') dofile(wwtlfs.writedir()..'Scripts/wwt/wwtExport.lua') local janjan = require('lfs'); dofile(janjan.writedir()..[[Scripts\JanJan\JanJan_Export.lua]]) local wwtlfs=require('lfs') dofile(wwtlfs.writedir()..'Scripts/wwt/wwtExport.lua')dofile(lfs.writedir()..[[Scripts\DCS-BIOS\BIOS.lua]]) As you can see there is a janjan entry there too (which is something for VoiceAttack) - I don't know lua enough to know if that's the problem, or whether that's fine where it is, it seems OK to me. Anyway, I did change it a little to local wwtlfs=require('lfs') dofile(wwtlfs.writedir()..'Scripts/wwt/wwtExport.lua') local wwtlfs=require('lfs') dofile(wwtlfs.writedir()..'Scripts/wwt/wwtExport.lua')dofile(lfs.writedir()..[[Scripts\DCS-BIOS\BIOS.lua]]) local janjan = require('lfs') dofile(janjan.writedir()..[[Scripts\JanJan\JanJan_Export.lua]]) To no effect. The bottom two-thirds of the ICP works just fine, it's just a button-box down there after all, I think of it as a button box with a display attached to it, just like the MFDs are displays with button-boxes around them. Does anyone know why the DED would suddenly stop displaying in DCS? (As I said, it's fine in BMS.) Edited February 18, 2024 by DMarkwick
Trigati Posted February 19, 2024 Posted February 19, 2024 Looks to me like 2 things…You have the winwing rows in there twiceAnd the second time it doesn’t start a new line before the BIOS row….which would probably fail the entire data exportSent from my iPhone using Tapatalk
DMarkwick Posted February 19, 2024 Author Posted February 19, 2024 OK, thanks for the reply I guess I will change it to local wwtlfs=require('lfs') dofile(wwtlfs.writedir()..'Scripts/wwt/wwtExport.lua') dofile(lfs.writedir()..[[Scripts\DCS-BIOS\BIOS.lua]]) local janjan = require('lfs') dofile(janjan.writedir()..[[Scripts\JanJan\JanJan_Export.lua]]) when I get back home, see if that fixes anything.
rob10 Posted February 19, 2024 Posted February 19, 2024 And check in SimAppPro that you have the permission to change export .lua (sorry, can remember exactly what it's called) turned OFF so it doesn't attempt to put the lines back in again. Hopefully that prevents you from getting doubled up again. But likely the WW and DCS-Bios lines being combined was the case of your issue.
DMarkwick Posted February 19, 2024 Author Posted February 19, 2024 Meh. My last change 2 posts up didn't alter anything.
rob10 Posted February 20, 2024 Posted February 20, 2024 In that case I'd take the WW line out and do the opposite of my 1st post and let SimAppPro recreate the line in your lua.
DMarkwick Posted February 20, 2024 Author Posted February 20, 2024 Right, I'll try that. Would you happen to know what a "naked" default export.lua should look like? I'll probably revert it right back to default.
Trigati Posted February 20, 2024 Posted February 20, 2024 Totally naked is blank, so I suggest rename the file to make DCS / SimAppPro think it doesn’t exist. Then use SimAppPro to setup and try it.You can always then try adding your other rows back in if you need themSent from my iPhone using Tapatalk
Recommended Posts