Jump to content

Recommended Posts

Posted (edited)

Hey guys,

I am using the Ikarus to export my Hornet's and Harrier's MFD on my touch screen. However, as all of you know.(Both helios and Ikarus users) When you want to change a plane in the game, you will have to restart the game then select the plane you want(Like you dont want to fly F18 anymore, you cant just use harrier coz when you do, the MFD will be 'misplace' from your Helios&Ikarus profile). I checked monitorsetup and found the following codes:

 

 

for reconfigure viewports setup for each unit type independently you can declare here function

 

function reconfigure_for_unit(unit_type) --unit type is string with unit name

if unit_type == "A-10C" then

 

Viewports = ... define new Viewports table

-- also you can define cockpit displays viewports here

RIGHT_MFCD = ... define new RIGHT_MFCD viewport

 

else

Viewports = ... define default for others

RIGHT_MFCD = nil -- remove for others

end

end

 

 

 

 

It might give us a way out, but I dont know how it works, I tried to use the code, but it never worked out for me. (no output totally)I wonder Does anyone of you found a way out?

 

 

Is it possible to solve the problem with just editing one perfect monitorsetup file?

 

 

 

PS: I know, I can change the output name on the certain aircraft, then apply it to my monitorconfig, but it's just way too complicated.

 

 

Thanks all for the help~!

 

 

 

 

Edit, here is one of my failed monitor code:

 

_ = function(p) return p; end;

name = _('Ikarus TESTING');

Description = 'BMFCD'

Viewports =

{

Center =

{

x = 0;

y = 0;

width = 2560;

height = 1080;

viewDx = 0;

viewDy = 0;

aspect = 21/9;

}

}

 

 

UIMainView = Viewports.Center

GU_MAIN_VIEWPORT = Viewports.Center

 

function reconfigure_for_unit(unit_type)

--unit type is string with unit name

if unit_type == "F/A-18C" then

 

RIGHT_MFCD =

{

x = 1595;

y = 1302;

width = 370;

height = 370;

}

 

LEFT_MFCD =

{

x = 606;

y = 1298;

width = 370;

height = 370;

}

 

CENTER_MFCD =

{

x = 1077;

y = 1711;

width = 398;

height = 397;

}

end

if unit_type == "AV8BNA" then

RIGHT_MFCD =

{

x = 1644;

y = 1446;

width = 422;

height = 380;

}

 

LEFT_MFCD =

{

x = 490;

y = 1446;

width = 422;

height = 380;

}

end

end

Edited by Silly_Jolly
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...