Jump to content

hreich

Members
  • Posts

    1787
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by hreich

  1. Hi Icarus...do you have maybe a dimensionm for the hole of thin u used ?
  2. Can you please attach image of your solution fix?
  3. When using extender, be aware about this..http://forums.eagle.ru/showthread.php?t=144993..it happend to me after 2 years of use with extender...and one case of ipad falling on my stick..now somebody needs to make cheap replacement for that crappy piece that tm used in warthog stick
  4. Please let is know when its available...i am desperate to buy after my warthog tailpiece broke and i cant use my tm warthog anymore Sent from my SM-A500FU using Tapatalk
  5. I have blue screen on mirrors with word mirror written over it. I did dcs repair option and newest version 1.5 installed..Does anybody have a file that i need to replace to fix this?
  6. I am also new in this export thing myself..I just managed to get my export working today by following this post http://forums.eagle.ru/showpost.php?p=2133064&postcount=2 but i edited files for mirage - file you need to edit for radar is Mods\aircraft\M-2000C\Cockpit\VTB\VTB_init.lua - in there i added 2 lines at the end of file dofile(LockOn_Options.common_script_path.."ViewportHandling.lua") try_find_assigned_viewport("Mirage_Radar") and edited my monitor profile file which is here DCS WORLD\Config\MonitorSetup and added these lines at the end --////////////////////////////////////// -- Mirage 2000 = --////////////////////////////////////// Mirage_Radar = { x = 1921; y = 0; width = 800; height = 800; } Mirage_RWR = { x = 2721; y = 0; width = 200; height = 200; } UIMainView = Viewports.Center ------------------------------------------------------------------------------------------------------- These is the whole file: "_ = function(p) return p; end; name = _('All Aircraft Export HR'); Description = 'A-10, Ka-50, M-2000C'; Viewports = -- Put your values in , and delete all exports that you don't want to use ! --[[ List of Exports: ---------------------- Eagle Dynamics A-10C = ---------------------- MFCD_init.lua ED_A10C_LEFT_MFCD ED_A10C_RIGHT_MFCD CDU_init.lua ED_A10C_CDU ---------------------- Eagle Dynamics Ka-50 = ---------------------- ABRIS_init.lua ED_KA50_ABRIS SHKVAL_init.lua ED_KA50_Shkval UV_26_init.lua ED_KA50_UV26 PVI_init.lua ED_KA50_PVI --]] { Center = { x = 0; y = 0; width = 1920; height = 1080; viewDx = 0; viewDy = 0; aspect = 1.7777777777777777777777777778; } } GUI= { x = 0; y = 0; width = 1920; height = 1080; } UIMainView = GUI --////////////////////////////////////// -- Eagle Dynamics A-10C = --////////////////////////////////////// ED_A10C_LEFT_MFCD = { x = 1921; y = 0; width = 300; height = 300; } ED_A10C_RIGHT_MFCD = { x = 2221; y = 0; width = 300; height = 300; } CDU_EXPORT = { x = 2520; y = 0; width = 280; height = 180; } ED_A10C_CDU = { x = 2523; y = 0; width = 280; height = 180; } --////////////////////////////////////// -- Eagle Dynamics Ka-50 = --////////////////////////////////////// ED_KA50_Shkval = { x = 1921; y = 0; width = 400; height = 300; } ED_KA50_ABRIS = { x = 2321; y = 0; width = 290; height = 400; } ED_KA50_UV26 = { x = 2611; y = 0; width = 50; height = 60; } ED_KA50_PVI = { x = 2661; y = 0; width = 220; height = 75; } --////////////////////////////////////// -- Eagle Dynamics UH-1H = --////////////////////////////////////// ED_Kneeboard = { x = 1921; y = 0; width = 500; height = 800; } --////////////////////////////////////// -- Mirage 2000 = --////////////////////////////////////// Mirage_Radar = { x = 1921; y = 0; width = 800; height = 800; } Mirage_RWR = { x = 2721; y = 0; width = 200; height = 200; } UIMainView = Viewports.Center " ---------------------------------------------------------------- Third file is here: DCSWORLD\Scripts\Aircrafts\_Common\Cockpit ---> ViewportHandling.lua which is " -- positioning on screen in HUD Only view function update_screenspace_diplacement(aspect,is_left,zoom_value) local aspect = aspect or 1 local zoom_value = zoom_value or 0 local default_width = 0.5 * LockOn_Options.screen.height + (64 * zoom_value) if default_width > LockOn_Options.screen.height then default_width = LockOn_Options.screen.height end if default_width > 0.5 * LockOn_Options.screen.width then default_width = 0.5 * LockOn_Options.screen.width end local default_height = default_width / aspect local default_y = LockOn_Options.screen.height - default_height local default_x = LockOn_Options.screen.width - default_width if is_left then default_x = 0 end dedicated_viewport = {default_x,default_y,default_width,default_height} dedicated_viewport_arcade = {default_x, 0 ,default_width,default_height} end function set_full_viewport_coverage(viewport) dedicated_viewport = {viewport.x, viewport.y, viewport.width, viewport.height} dedicated_viewport_arcade = dedicated_viewport purposes = {render_purpose.GENERAL, render_purpose.HUD_ONLY_VIEW, render_purpose.SCREENSPACE_OUTSIDE_COCKPIT, render_purpose.SCREENSPACE_INSIDE_COCKPIT} -- set purposes to draw it always render_target_always = true end -- try to find assigned viewport function try_find_assigned_viewport(exactly_name,abstract_name) local multimonitor_setup_name = "Config/MonitorSetup/"..get_multimonitor_preset_name()..".lua" local f = loadfile(multimonitor_setup_name) if f then local env = {screen = LockOn_Options.screen} setfenv(f,env) pcall(f) local target_env = env[exactly_name] if not target_env and abstract_name then target_env = env[abstract_name] end if target_env then set_full_viewport_coverage(target_env) end end end"
  7. You have to put for example - this in file for Radar - in mirage that is dofile(LockOn_Options.common_script_path.."Viewpor tHandling.lua") try_find_assigned_viewport("Mirage_Radar") the files you want are Mods\aircraft\M-2000C\Cockpit\VTB\VTB_init.lua And after that you need to have modified monitor.lua file (in folder config/MonitorSetup in dcs world) and add the part for exporting radar: --////////////////////////////////////// -- Mirage 2000 = --////////////////////////////////////// Mirage_Radar = { x = 1921; y = 0; width = 800; height = 800; }
  8. Thank you ..it worked for me but i had to change this line dofile(LockOn_Options.common_script_path.."Viewpor tHandling.lua") try_find_assigned_viewport("Mirage_Radar") to dofile(LockOn_Options.common_script_path.."Viewporthandling.lua") But now i have problem with shkval screen - it looks like in this picture
  9. Hi.. please help me to get this working: http://forums.eagle.ru/showthread.php?p=2615799#post2615799
  10. Wooow...i really like what you are trying to do...and probably i am going to be one of your customers for both trackir alternative and f-18 grip since i broke my warthog stick (tail piece part broke so i can't use it till i don't know how long. TM support doesn't have a replacement part so i ordered 3d printed one)...
  11. Hi...i just spent 2 hours reading through forums and topics about exporting data to second monitor. But for the love of God i can't figure how to export radar and rwr for mirage 2000c ,and i don't have so much time and my kids wouldn't allow me to spend another hour trying to figure this out...I am using these JGSME files to export data for A-10C and Ka--50 to my second monitor (pad2). Then i use touch server ipad app - so i can get some sort of working abris/shkval display cockpit for ka-50 and working MFCDs and CDU for a-10. These files i am using with JGSME are here for you to check: https://app.box.com/s/uzv3btt6266u6iej9znh0402h9e0sxs9 How can I add another section in those files so i can have export from mirage 2000c to my second monitor. Configuration i use is: main screen 1920*1080 - on the left and extraction monitor on the right - same resolution.
  12. I swiched to french pilot in logbook, enabled native language for avionics, but my pilot still speaks english...can i switch to french
  13. Yep..and i decided to jump the gun and ordered steel part to fix my broken stick..i will post updates and pics when my part arrives. Just hoping that measures are correct. TM support was not support at all...They offered to sell me new stick...So lame.. And mirage 2000c is just around the corner
  14. More info here - http://www.patterson-equip.com/fs_ldj.html. If somebody is willimng to sell me original part for TM warthog i would like to buy it since my piece fell apart in too many pieces for glueing. TM support doesn't have a spare part.
  15. Hi...I need a bit of help please..Does anybody know somebody who would like to sell me original part for TM warthog? This is piece that is used to connect the stick to the base of warthog unit. If somebody uses modified part - Thrustmaster CougarTM Tailpiece Adapter -- http://www.patterson-equip.com/fs_ldj.html and has one form cougar or warthog to sell it, please email me.
  16. Well the fix didn't work because the part fell apart in many pieces when my car mechanic tried to put u tube in it..Now it can't be fixed.
  17. Thanks for offer...still waiting for jb weld to arrive across the pond from uk..then i will try to reinforce it with tube and then glue it
  18. My ipad2 fell from table ontop of center mounted stick
  19. LynxDK...thanks i am in process of finding car repair shop which can make them ..because diameter on one end is 12 cm and other i 10 or so...
  20. Where can i get one of this http://forums.eagle.ru/showthread.php?p=2601643#post2601643
  21. Does anybody know where can i buy this ? It is a post from other forum and since my warthog stick is broken i really need this pat. It is called "tailpiece"?
  22. Tm support - doesn't have spare part...so i need to science the sh...t out of this...yesterday i checked the dimension and on one end the hole is bigger than on the other, so the tube is fixed on on one side and not fixed on other
  23. Yep that ipad sumbi...ch is pretty heavy..no scratch on it though
  24. Hi...2 days ago my ipad fell on top on warthog stick.. I daissasembled it and now i would like to repair or order replacement part from tm support. Does anybody have mail adress where i could send photos of needed part to tm support? I already created support tocket but can't attach photos. Also if somebody have idea how to glue and with what to enforce the part please share Sent from my SM-A500FU using Tapatalk
  25. Yas managed it...almost flew it off on my carpet
×
×
  • Create New...