Jump to content

lone82

Members
  • Posts

    30
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. 2024-10-07 07:23:21.235 INFO EDCORE (21188): try to write dump information 2024-10-07 07:23:21.273 INFO EDCORE (21188): # -------------- 20241007-072322 -------------- 2024-10-07 07:23:21.273 INFO EDCORE (21188): DCS/2.9.8.1214 (x86_64; MT; Windows NT 10.0.19045) 2024-10-07 07:23:21.274 INFO EDCORE (21188): D:\Program Files\Eagle Dynamics\DCS World\bin-mt\uiBaseRenderer.dll 2024-10-07 07:23:21.274 INFO EDCORE (21188): # C0000005 ACCESS_VIOLATION at 00007ffed24ca6a0 00:00000000 2024-10-07 07:23:21.275 INFO EDCORE (21188): SymInit: Symbol-SearchPath: 'D:\Program Files\Eagle Dynamics\DCS World\bin-mt;', symOptions: 532, UserName: '49Lon' 2024-10-07 07:23:21.275 INFO EDCORE (21188): OS-Version: 10.0.19045 () 0x300-0x1 2024-10-07 07:23:21.276 INFO EDCORE (21188): 0x000000000000a6a0 (uiBaseRenderer): uiBaseShaderQuads::reset + 0x0 2024-10-07 07:23:21.276 INFO EDCORE (21188): 0x000000000000ad12 (uiBaseRenderer): uiBaseTextString::redraw + 0x42 2024-10-07 07:23:21.277 INFO EDCORE (21188): 0x0000000000072eec (dxgui): gui::Text::doRedraw + 0x4C 2024-10-07 07:23:21.277 INFO EDCORE (21188): 0x0000000000070a85 (dxgui): gui::skin::Skin::doRedraw + 0x25 2024-10-07 07:23:21.277 INFO EDCORE (21188): 0x000000000007cad8 (dxgui): gui::Widget::doRedraw_ + 0x18 2024-10-07 07:23:21.277 INFO EDCORE (21188): 0x000000000007ca3f (dxgui): gui::Widget::doRedraw + 0x3F 2024-10-07 07:23:21.277 INFO EDCORE (21188): 0x000000000007ca81 (dxgui): gui::Widget::doRedrawAll + 0x31 2024-10-07 07:23:21.277 INFO EDCORE (21188): 0x000000000001fe9f (dxgui): gui::GUI::submitGraphicCommands + 0x5F 2024-10-07 07:23:21.277 INFO EDCORE (21188): 0x0000000000155319 (Visualizer): smCamera_Implement::getClipRegion + 0x1D709 2024-10-07 07:23:21.277 INFO EDCORE (21188): 0x0000000000033b69 (edCore): ed::SyncTaskQueue::push_task + 0x489 2024-10-07 07:23:21.278 INFO EDCORE (21188): 0x0000000000048b06 (edCore): ed::SyncTaskQueue::push_task + 0x15426 2024-10-07 07:23:21.278 INFO EDCORE (21188): 0x0000000000032451 (edCore): ed::thread::_get_current_thread_id + 0x71 2024-10-07 07:23:21.278 INFO EDCORE (21188): 0x0000000000021bb2 (ucrtbase): _configthreadlocale + 0x92 2024-10-07 07:23:21.278 INFO EDCORE (21188): 0x0000000000017374 (KERNEL32): BaseThreadInitThunk + 0x14 2024-10-07 07:23:21.643 INFO EDCORE (21188): Minidump created. dcs.log-20241007-072322.zip
  2. Same here dcs.log-20241001-144914.zip dcs.log-20241001-132805.zip
  3. Will this cause it to fail IC?
  4. Didn't work for me. I take it I need to add some lines to the init.lua? WIll probably fail the IC.
  5. Somebody should compile a complete list of all Aircraft MFCD names and post. If I knew how to look them up I would. It would be a great document to have saved.
  6. SA342M TV MFCD Name? ......"LEFT_MFCD" doesnt work
  7. I'm trying to get my MFD (TV) for the SA342 Gazelle on my second monitor with no luck. Perhaps I have the wrong viewport name? _ = function(p) return p end name = _('Thomas+Custom+Test') description = 'JF17, KA50_3, SU25T' Viewports = { Center = { x = 0; y = 1080; width = 3840; height = 1080; aspect = 3840/1080; } } local ui = 2 { x = 0; y = 1080; width = 3840; height = 1080; aspect = 3840/1080; } local bino = { x = 0; y = 1080; width = 3840; height = 1080; aspect = 3840/1080; } function reconfigure_for_unit(unit_type) if unit_type == "JF-17" then CENTER_MFCD = { x = 960; y = 0; width = 960; height = 1080; } RIGHT_MFCD = { x = 1920; y = 0; width = 960; height = 1080; } elseif unit_type == "Ka-50_3" then Shkval = { x = 960; y = 0; width = 1920; height = 1080; } elseif unit_type == "Su-25T" then RIGHT_MFCD = { x = 960; y = 0; width = 1920; height = 1080; } elseif unit_type == "SA342M" then LEFT_MFCD = { x = 960; y = 0; width = 960; height = 1080; } end end UIMainView = ui GU_MAIN_VIEWPORT = ui BINOS_NOSTEREO_VIEWPORT = bino
  8. THis is how I have it. Top monitor #2 is 3840x2160 and bottom "Main #1" monitor is 3840x1080 _ = function(p) return p end name = _('test2') description = 'JF17, KA50_3, SU25T' Viewports = { Center = { x = 0; y = 2160; width = 3840; height = 1080; viewDx = 0; viewDy = 0; aspect = 3840/1080; } } function reconfigure_for_unit(unit_type) if unit_type == "JF-17" then CENTER_MFCD = { x = 0; y = 0; width = 1920; height = 2160; } RIGHT_MFCD = { x = 1920; y = 0; width = 1920; height = 2160; } elseif unit_type == "Ka-50_3" then Shkval = { x = 0; y = 0; width = 3840; height = 2160; } elseif unit_type == "Su-25T" then RIGHT_MFCD = { x = 0; y = 0; width = 3840; height = 2160; } end end UIMainView = { x = 0; y = 2160; width = 3840; height = 1080; viewDx = 0; viewDy = 0; aspect = 3840/1080; } GU_MAIN_VIEWPORT = { x = 0; y = 2160; width = 3840; height = 1080; viewDx = 0; viewDy = 0; aspect = 3840/1080; }
  9. Any fix for the CA Sights looking like this with MFD's exported? @jonsky7
  10. Why are custom autostart lua or just adjusting stock autostart lua included in the IC. What harm is there in making the autostart turn on this and turn off that? When you own almost all the modules. Remembering how to manual start everything is hard. We put a lot of work into making custom autostart to save time. Not to mention the pain of adding in the missing key binds that ED for some reason leaves out in order to make a voice attack script function if we want a custon autostart.. @BIGNEWY @NineLine
  11. The whole pure scripts thing needs an overhaul. You adjust the autostart in a gazelle to not turn on the lights and .... IC Check Fail!... it's just dumb
  12. Easy fix (at least worked for me). Make sure game is closed. Go to your \Users\YOUR NAME\Saved Games\DCS.openbeta\Config\ folder. Rename the "Input" folder to "temp". Start the game, go to Options, Controls, Click OK and exit the game. A new Input folder will be generated. Now move everything in the "Temp" folder back to the new "Input". All conflicts should be gone.
  13. For some reason I get no response to radio calls in Multiplayer in 1.5 or 2.0. Single player works fine. What could cause this?
×
×
  • Create New...