Jump to content

Need assistance with exporting MFCDS


Recommended Posts

I've been thinking about getting a small USB touch monitor to use for the purposes of having MFCDs on them with an overlay using helios to be able to control them. I'm currently using my android tablet as a monitor to figure it out and if it's even possible but i am unable to figure out how the lua works as nothing i seem to do actually makes any changes. I found an old post that had an example of how to set it up and i've changed a few things but i have no luck.

 

this is what i'm trying to do

60X1kCw.png

 

With each MFCD 80px from the edge and the top.

 

Yet for some reason, this is happening despite the changes i make

yM50eTM.png

 

Now the below lua is not actually what i'm attempting to do, this is where it's currently at and giving me the same issue as above. I was just changing things to see if something might actually change the layout at all but no luck. can someone tell me what im doing wrong?

 

 

_ = function(p) return p; end;
name = _('Export example');
Description = 'Export example';
Viewports =
-- Put your values in , and delete all exports that you don't want to use !
-- You will have to determine the area for the MP/SP GUI
{	
Center =
{
	x = 0;
	y = 0;
	width = 1980;
	height = 1080;
	viewDx = 0;
	viewDy = 0;
	aspect = 1.3333333333;
}
}

LEFT_MFCD =
{
	x = 500;
	y = 0;
	width = 500;
	height = 500;
}

RIGHT_MFCD =
{
	x = 1000;
	y = 0;
	width = 500;
	height = 500;
}

UIMainView = Viewports.Center

 

im not sure what the "right mfcd" is in the f-15 which is my testing ground, any idea if this can be changed to the weapons screen as well?

Saitek X-52 | Track IR 5 w/ TrackClip | DSD "Trackzilla" Button Box



Flaming Cliffs 3 | F-5e | Mirage 2000 | A-10c | Harrier AV-8B

[sIGPIC][/sIGPIC]

Link to comment
Share on other sites

 

| i9 9900K Octa Core 2TB SSD +32GB Spectrix DDR4 @3200MHz RGB | 2 x Radeon RX480 in Crossfire. | TrackIR5 HOTAS Warthog,MFG Crosswind Pedals | Cougar MFDs |

 

[OCG] Oceanic Combat Group

discord.gg/ZmXEBSU

"Through The Inferno"

by deadlyfishes

 

Official Australian Servers

 

SRS: All Servers have Auto-Connect Enabled

 

Server 1: TTI Caucasus

Server 2: TTI Persian Gulf

Server 3: OCG Training

Server 4: OCG NTTR & Multiplayer Missions

 

Australian Website

AU Discord Server

Link to comment
Share on other sites

Hello.

 

First of all, for the F15 you only can export the radar viewport, not the RWR.

 

 

 

And you code need to look something like this:

 

 

_ = function(p) return p; end;
name = _('Export example');
Description = 'Export example';
Viewports =
-- Put your values in , and delete all exports that you don't want to use !
-- You will have to determine the area for the MP/SP GUI
{	
Center =
{
	x = 0;
	y = 0;
	width = 1980;
	height = 1080;
	viewDx = 0;
	viewDy = 0;
	aspect = 1.3333333333;
}
}

LEFT_MFCD =
{
	x = 2060;  -- (this is 1980 + 80)
	y = 80;
	width = 500;
	height = 500;
}

RIGHT_MFCD =
{
	x = 2680;
	y = 80;
	width = 500;
	height = 500;
}

UIMainView = Viewports.Center

 

 

..

Link to comment
Share on other sites

  • Recently Browsing   0 members

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