Jump to content

raymondabel

Members
  • Posts

    329
  • Joined

  • Last visited

Everything posted by raymondabel

  1. Link https://github.com/s-d-a/Ikarus not updated yet. V 1.4.5.3h avalable but https://github.com/H-J-P/Ikarus works
  2. Thanks I will test it today !!
  3. If I may TACAN X/Y do not works suggestion : propably it would be easier to creat a new knob or switch like pageup/page down then a know like in game. Same with 2 ILS knobs no "exterieur ring" I just started to use those tis is why I did not see it before Ray
  4. OnOffOn allo simply tell me what should be the setting input/output then I will fix all the 3wayswtich for now it is 0.0,0.1,0.2/0.0,0.1,0.2
  5. I did read and try but. seem that I am to Noob. I was able to manage à lot of thing but it reach my limite. As an exemble, I fix CDU page up/down that are inverted Ikarus CDU flight plan interface doesn not work well but pageup/down do the job on game CDU Having this profile "updateted" and "uptimised" would be more then appreciated I did sent you a donation, I could do it again Thanks for your time Ray
  6. allo little "bugs" I found it the A-10C profile: mostly all the same thing 3 way switch are not set properly when you start the profile. AHCP - Turn On/Off/Test IFFCC; DCSID 384 at test should be at off all CMSP 3way switch should be at off but start at on Not clear withLand Taxi Lights DCSID 655 but should start at off. I try to find a way to fix it myself but I am no programer at all. Just an happy user. One thing, I have to set those each time because I notice that when I do not do it, DCS freese. I can not make a clear relation one on one (Univeral Radio)+Ikarus= DCS freese yet to help to find what is wrong. Thanks for your time Ray
  7. Helios and Ikarus sorry for bad english level I am with A-10C. (I love the plane) A-10C Helios profile works with 2.5.* ( Loz SM v2.1) but it had no update and no support anymore. So all new airports are not avalable and Capt Zeen is working on new projects (that make perfect sense too then working on an old module) I suggest to use Cap Zeen LUA. Worhs great !! Ikarus has full support and a lot a great addon and need some time to make it work but DCS crach when I use it but DCS never crashed with Helios. Maybe it is more stable wirh new profiles? maybe it is a conflic with Universal radio that I use to play with my clan. I west enough hour to continue surching.
  8. here is mine working perfectly: be sure that in your /config/monitorsetep, you have the right name : "CDU_SCREEN" =-=-=-=-=-=-=-=- dofile(LockOn_Options.common_script_path.."devices_defs.lua") dofile(LockOn_Options.common_script_path.."ViewportHandling.lua") --added for Instrument Export Mod indicator_type = indicator_types.COMMON --added for Instrument Export Mod purposes = {render_purpose.GENERAL} update_screenspace_diplacement(1,0,0) try_find_assigned_viewport("ED_A10C_CDU","CDU_SCREEN") --end Instrument Export Mod adds dofile(LockOn_Options.script_path.."CDU/indicator/CDU_pages.lua") init_pageID = id_CDU_Pages.CDU_PAGE_OFF CDU_preinit_files_path = LockOn_Options.script_path.."CDU/Indicator/Preinit/" page_subsets = {} dofile(LockOn_Options.script_path.."CDU/indicator/CDU_subsets_init.lua") ---------------------- pages = {} pages_by_mode = {} clear_mode_table(pages_by_mode, 10, 10, 29) function get_page_by_mode(master, L2, L3, L4) return get_page_by_mode_global(pages_by_mode,init_pageID,master,L2,L3,L4) end dofile(LockOn_Options.script_path.."CDU/indicator/CDU_pages_init.lua") use_parser = false dofile(LockOn_Options.common_script_path.."devices_defs.lua") indicator_type = indicator_types.COMMON used_render_mask = "interleave.bmp" =-=-=-=-=-=-= ping me if it does not work, maybe the "copy-past " is not perfect
  9. be sure you modify Pos X and Pos Y nor Width or Height... :) Also, yau have to finf the main panel. On A-10C it is call Front Panel. Witch plane would you like to modify? Question: Do you have 2 sreens or you try to have DCS and Ikarus on the same screen?
  10. welll if you read what I wrote CHANGE the zero to an othe digit so if you have 2 screen lone over the other Pos Y is set to 1080 in my case. Pl take time to READ when someone take the time to reply to you. If you do not undersand then say: "your english level is poor and I do not undersatnd" That will be better
  11. IP adress as nothig to do with screen position it should be let at 127.0.0.1 AFAIAK
  12. for A-10c but it will probably works for all open Ikarus click configutration find front panel find "Pos X" then change zero" for what you need find "Pos Y" then change zero" for what you need Save refresh wala
  13. I found what I was looking for: https://forums.eagle.ru/showthread.php?t=70716&page=62 Export - All Viewports.rar
  14. I have 2 screens one over the other here is my lua: +-+-+-+-+-+ _ = function(p) return p; end; name = _('Ikarus'); Description = 'Ikarus' Viewports = { Center = { x = 0; y = 0; width = 1920; height = 1080; viewDx = 0; viewDy = 0; aspect = screen.aspect; } } LEFT_MFCD = { x = 65; y = 1205; width = 450; height = 450; } RIGHT_MFCD = { x = 1405; y = 1205; width = 450; height = 450; } UIMainView = Viewports.Center +-+-+-+-+ Now Should I add GUI like : +-+-+-+-+-+ _ = function(p) return p; end; name = _('Ikarus'); Description = 'Ikarus' Viewports = { Center = { x = 0; y = 0; width = 1920; height = 1080; viewDx = 0; viewDy = 0; aspect = screen.aspect; } } GUI = { x = 0; y = 0; width = 1920; height = 1080 } LEFT_MFCD = { x = 65; y = 1205; width = 450; height = 450; } RIGHT_MFCD = { x = 1405; y = 1205; width = 450; height = 450; } UIMainView = GUI +-+-+-+--+ thanks for your help Ray
  15. Allo All I have 2 screen one over the other I am trying to import RWR in A-10C module on my seconde screen to use Helios or Ikarus. here is my lua: +-+-+-+-+-+ _ = function(p) return p; end; name = _('Ikarus'); Description = 'Ikarus' Viewports = { Center = { x = 0; y = 0; width = 1920; height = 1080; viewDx = 0; viewDy = 0; aspect = screen.aspect; } } LEFT_MFCD = { x = 65; y = 1205; width = 450; height = 450; } RIGHT_MFCD = { x = 1405; y = 1205; width = 450; height = 450; } RWR_SCREEN = -- ED_A10C_RWR = or RWR_SCREEN = ??? { x = 509; y = 1171; width = 300; height = 300; } UIMainView = Viewports.Center +-+-+-+-+ the RWR does not show up. Do I miss someting?
  16. allo I am looking for the RWR as well. I think it as something to do with the file : AN_ALR69V_init.lua Question : in your file, why the section +-+-+- GUI = { x = 0; y = 0; width = 5760; height = 1080; } +-+-+-+-+
  17. :) is it possible to have yours AN_ALR69V_init.lua for A-10C yours MonitorSetup *.lua file assoated witj it then? mine is for V1.1.1.1 so it must have gone thout a lot of changes since then Thanks for your time Ray
  18. probably all Ikarus user had done the modification yet. AN_ALR69V_init.lua needs to be modify C:\Program Files\eagle dynamics\DCS World\Mods\A-10C - Instrument Export\Mods\aircraft\A-10C\Cockpit\scripts\AN_ALR69V\indicator\AN_ALR69V_init.lua and C:\Program Files\eagle dynamics\DCS World\Config\MonitorSetup
  19. Can you see. I need this top center the little "A"
  20. I need the green info to show up in the monitor then I will be able to start Ikarus over it
  21. all allo is their a new way to add RWR in 2.5.* in the A-10C module ? I try tio go to all 63 pages but the only clear way is to use the 1.1.1 way set on page 1
  22. your reply prove me that my question is not clear. In Ikarus, the RWR if just a clear frame with no DATA. The DATA needs to comes from DCS like the MFCD. so how to make RWR DATA "under" the Ikasus so it can be seen thruth ? see the fisrt picture : https://forums.eagle.ru/showthread.php?t=70716 this is V1.1.1.1 old I am loog for a new and beter way to do it I am sure you are doing it but my question is not clear (bad english level...) Thanks for your time
  23. may be à bit off topic but because DCS crash a lot I am looking for all option I can found so here is my question: Hopefully, my question will be clear to get clear answer in A-10C module, How do you duplicat the RWR (AN_ALR69V) in the second screen to "fit" in Ikarus? May be it is the way I do it that make DCS instable because the way I do it seems to look way back to V1.1.1.1
  24. I just install riva tuner and did a lot of RTFM. Moninors at 60 mhz so I will set FPS to 60 and tests
  25. k I will try to find and give it a chance but so far Graphic.lua with maxFPS work good so far I can to the conclusion that this is track IR or something associated with because I played with out track IR ten no crash I am wasting so much time arround this game....
×
×
  • Create New...