Manhorne Posted April 16, 2023 Posted April 16, 2023 Every time I select the HARM and go to the TDC and select the weapon the game crashes....I have included a log file... dcs.log-20230416-143944.zip
ED Team BIGNEWY Posted April 16, 2023 ED Team Posted April 16, 2023 Please remove all unofficial mods from C:\Users\mike\Saved Games\DCS.openbeta\Mods then run a slow repair of DCS Forum rules - DCS Crashing? Try this first - Cleanup and Repair - Discord BIGNEWY#8703 - Youtube - Patch Status Windows 11, NVIDIA MSI RTX 3090, Intel® i9-10900K 3.70GHz, 5.30GHz Turbo, Corsair Hydro Series H150i Pro, 64GB DDR @3200, ASUS ROG Strix Z490-F Gaming, PIMAX Crystal
Manhorne Posted April 16, 2023 Author Posted April 16, 2023 59 minutes ago, BIGNEWY said: Please remove all unofficial mods from C:\Users\mike\Saved Games\DCS.openbeta\Mods then run a slow repair of DCS I removed the MODS ran the slow repair and it still crashes when the HARM is selected on the TDC page.
ED Team BIGNEWY Posted April 16, 2023 ED Team Posted April 16, 2023 Hi, I have tried to reproduce but was unable, I will see if others can try thanks Forum rules - DCS Crashing? Try this first - Cleanup and Repair - Discord BIGNEWY#8703 - Youtube - Patch Status Windows 11, NVIDIA MSI RTX 3090, Intel® i9-10900K 3.70GHz, 5.30GHz Turbo, Corsair Hydro Series H150i Pro, 64GB DDR @3200, ASUS ROG Strix Z490-F Gaming, PIMAX Crystal
Manhorne Posted April 17, 2023 Author Posted April 17, 2023 So I have been playing around with and I have found that when I select the Weapon page on the left TDC it works and the game does not crash.However, if I select the weapons page on the right TDC it always crashes on any map so far I have tried it.
Solution Flappie Posted April 17, 2023 Solution Posted April 17, 2023 Hi. Rename your Export.lua script (in Saved Games/DCS.../Scripts)) to "Export.lua.bak", then try to crash the game again using the right TDC. Does it keep crashing? 1 ---
Manhorne Posted April 17, 2023 Author Posted April 17, 2023 35 minutes ago, Flappie said: Hi. Rename your Export.lua script (in Saved Games/DCS.../Scripts)) to "Export.lua.bak", then try to crash the game again using the right TDC. Does it keep crashing? That seemed to have fixed the issue so far. THANKS!!!!!
Flappie Posted April 18, 2023 Posted April 18, 2023 Great. I saw you're using the WinWing script. Please attach the Export.lua.bak file. You might need to reorder the lines is contains. ---
Manhorne Posted April 18, 2023 Author Posted April 18, 2023 13 hours ago, Flappie said: Great. I saw you're using the WinWing script. Please attach the Export.lua.bak file. You might need to reorder the lines is contains. Here is the file..... Export.bak.lua
Flappie Posted April 18, 2023 Posted April 18, 2023 Try reordering its content like this: -- load the DCS ExportScript for DAC and Ikarus dofile(lfs.writedir()..[[Scripts\DCS-ExportScript\ExportScript.lua]]) local vaicomlfs = require('lfs'); dofile(vaicomlfs.writedir()..[[Scripts\VAICOMPRO\VAICOMPRO.export.lua]]) local wwtlfs=require('lfs') dofile(wwtlfs.writedir()..'Scripts/wwt/wwtExport.lua') Then rename it to "Export.lua" and see if DCS crashes again. ---
Manhorne Posted April 18, 2023 Author Posted April 18, 2023 2 hours ago, Flappie said: Try reordering its content like this: -- load the DCS ExportScript for DAC and Ikarus dofile(lfs.writedir()..[[Scripts\DCS-ExportScript\ExportScript.lua]]) local vaicomlfs = require('lfs'); dofile(vaicomlfs.writedir()..[[Scripts\VAICOMPRO\VAICOMPRO.export.lua]]) local wwtlfs=require('lfs') dofile(wwtlfs.writedir()..'Scripts/wwt/wwtExport.lua') Then rename it to "Export.lua" and see if DCS crashes again. That did not work... It crashed the same as before when I went to the WPN page for the HARM...
Flappie Posted April 19, 2023 Posted April 19, 2023 You can try these configurations in order to find the culprit: -- ExportScript DISABLED -- load the DCS ExportScript for DAC and Ikarus -- dofile(lfs.writedir()..[[Scripts\DCS-ExportScript\ExportScript.lua]]) local vaicomlfs = require('lfs'); dofile(vaicomlfs.writedir()..[[Scripts\VAICOMPRO\VAICOMPRO.export.lua]]) local wwtlfs=require('lfs') dofile(wwtlfs.writedir()..'Scripts/wwt/wwtExport.lua') -- load the DCS ExportScript for DAC and Ikarus dofile(lfs.writedir()..[[Scripts\DCS-ExportScript\ExportScript.lua]]) -- Vaicom script DISABLED -- local vaicomlfs = require('lfs'); dofile(vaicomlfs.writedir()..[[Scripts\VAICOMPRO\VAICOMPRO.export.lua]]) local wwtlfs=require('lfs') dofile(wwtlfs.writedir()..'Scripts/wwt/wwtExport.lua') -- load the DCS ExportScript for DAC and Ikarus dofile(lfs.writedir()..[[Scripts\DCS-ExportScript\ExportScript.lua]]) local vaicomlfs = require('lfs'); dofile(vaicomlfs.writedir()..[[Scripts\VAICOMPRO\VAICOMPRO.export.lua]]) -- WinWing export DISABLED -- local wwtlfs=require('lfs') -- dofile(wwtlfs.writedir()..'Scripts/wwt/wwtExport.lua') ---
Manhorne Posted April 19, 2023 Author Posted April 19, 2023 50 minutes ago, Flappie said: You can try these configurations in order to find the culprit: -- ExportScript DISABLED -- load the DCS ExportScript for DAC and Ikarus -- dofile(lfs.writedir()..[[Scripts\DCS-ExportScript\ExportScript.lua]]) local vaicomlfs = require('lfs'); dofile(vaicomlfs.writedir()..[[Scripts\VAICOMPRO\VAICOMPRO.export.lua]]) local wwtlfs=require('lfs') dofile(wwtlfs.writedir()..'Scripts/wwt/wwtExport.lua') -- load the DCS ExportScript for DAC and Ikarus dofile(lfs.writedir()..[[Scripts\DCS-ExportScript\ExportScript.lua]]) -- Vaicom script DISABLED -- local vaicomlfs = require('lfs'); dofile(vaicomlfs.writedir()..[[Scripts\VAICOMPRO\VAICOMPRO.export.lua]]) local wwtlfs=require('lfs') dofile(wwtlfs.writedir()..'Scripts/wwt/wwtExport.lua') -- load the DCS ExportScript for DAC and Ikarus dofile(lfs.writedir()..[[Scripts\DCS-ExportScript\ExportScript.lua]]) local vaicomlfs = require('lfs'); dofile(vaicomlfs.writedir()..[[Scripts\VAICOMPRO\VAICOMPRO.export.lua]]) -- WinWing export DISABLED -- local wwtlfs=require('lfs') -- dofile(wwtlfs.writedir()..'Scripts/wwt/wwtExport.lua') Only the first one worked . The other two scripts still caused the same CTD after selecting WPN.
Flappie Posted April 20, 2023 Posted April 20, 2023 OK, I guess we can say the issue comes from your DCS-ExportScript installation, then (Scripts\DCS-ExportScript\ExportScript.lua). Maybe you can get some help here: https://github.com/s-d-a/DCS-ExportScripts/issues ---
Manhorne Posted April 20, 2023 Author Posted April 20, 2023 41 minutes ago, Flappie said: OK, I guess we can say the issue comes from your DCS-ExportScript installation, then (Scripts\DCS-ExportScript\ExportScript.lua). Maybe you can get some help here: https://github.com/s-d-a/DCS-ExportScripts/issues Thanks for the help. I will try there but I noticed looking someone else had the same exact issue I am having 2 years ago and no one ever answered them...
Manhorne Posted April 20, 2023 Author Posted April 20, 2023 48 minutes ago, Flappie said: OK, I guess we can say the issue comes from your DCS-ExportScript installation, then (Scripts\DCS-ExportScript\ExportScript.lua). Maybe you can get some help here: https://github.com/s-d-a/DCS-ExportScripts/issues I have attached the ExportScript.lua from the ExportScript folder if you want to take a look at it... ExportScript.lua
Flappie Posted April 20, 2023 Posted April 20, 2023 I compared it with the "official" one, and they're the same file. It seems this script is no longer maintained (2020). ---
Manhorne Posted April 20, 2023 Author Posted April 20, 2023 (edited) 35 minutes ago, Flappie said: I compared it with the "official" one, and they're the same file. It seems this script is no longer maintained (2020). I had never had an issue like this until now...I guess I will have to disable it when I use the F-16. I have not tested any other modules to see if they have the same issue or similar... Edited April 20, 2023 by Manhorne
Recommended Posts