-
Posts
49 -
Joined
-
Last visited
Content Type
Profiles
Forums
Events
Everything posted by yeldraw1
-
HOW TO GET AN AI AIRCRAFT TO SAY FLY TO WPT-1 THE RANDOMLY ON A PERCENTAGE FLY TO WPT 2, OF MAYBE WPT-3 OR SO ON. I USE TO KNOW HOW TO DO IT BUT FOR THE LIFE OF ME CANT DO IT AND CANT FIND IT ON THE NET....?
-
WHY DO SOME AIR PORTS HAVE NO RINGS, OR ONE RING, OR TWO RINGS AROUND THERE LOCATION ICONS? i KNOW WHAT THE ONES THAT ARE WHITE (HELOs). BUT CAN FIGURE OUT THE RINGS MEANING.. AS SEEN IN THE PIC WITH THE ....THANKS
-
AI flight orbit until player aircraft reaches the AI flight, then AI flight pushes on to next way point? any idea how to make this happen?
-
Is there a way to add a radio message, so one radio on the F10 option can have two out comes. IE: have a button called ROE. want the option to state DO NOT ENGAGE. But once a plane enters a trigger zone, the same F10 option ROE now says CLEARED TO ENGAGE?
-
If you use Voice Attack, just add 3 key binding in DCS to OSB 3 ®, OSB 2 (T), OSB 15 (Y) the lettrs in () are the key bindings I used. When you say the command I use CENTER. The TGP goes back to snow plow or bore-sight mode. And you get to keep your hands on the HOTAS....Works great
-
- 1
-
-
trying to export the RWR, CMSC, CMSP. I had them exported with the A-10C, but with the new A-10CII they wont export any ideas?
-
TGP boresight how to bring the tgp back to center. like in the A10C which is china hat aft short?
-
[CORRECT AS IS] TGP boresight I seem to not be able to recenter my tgp, it use to be chin hat aft. but now it seems to be laser search. anyone else having that issue?
-
Just bought the P47 and it looks like when I drop bombs they are not armed, there in no explosion just a white puff off dust....
-
does anyone know where the SC flight deck crew file is located in DCS
-
very nice how do you install this mod? or where?
-
did you get it to work?
-
aspect Have you figured a way around this? cause Im having the same issue
-
With the new update, I cant change my aspect ratio in the setting. I run 4 monitors. The cockpit is wide and the outside view is stretched. Game play seems fine. just doesnt look right. I can switch to single monitor and everything looks good. Before the update, I could change the aspect ratio. Now no matter the number put into the settings nothing changes.... Below is my setup Has anyone else seen this....
-
With the new up date aspect ratio is off in setting cockpit and aircraft look very wide...
-
New Capt Zeen F-16C v0.5 Helios profile !!!
yeldraw1 replied to Capt Zeen's topic in PC Hardware and Related Software
Awesome thanks Question, how do I get the dcs generic interface? When trying to load it, says can not find it? I have Helios ver 1.4.2019.1005 but dont have KA50 interface.. I do have DCS black shark but it wont use it. -
Has anyone noticed that GBU-38 dont hit targets? I was on a server and me and another A-10 pilot had the same issue. Been flying the hog now for at least 6 yrs now so I am pretty sure I know how to employ the weapon and system..... that is unless something has changed....
-
going to make aa A10 UFC and want to know how or a easy way to wire up a Master caution light. Going to be using a LEO BODNAR PCB BBI-32 Button Box Interface
-
Give me a call I will fly with you.....
-
F18 MFD exports now work with a very quick tweak.
yeldraw1 replied to Cowboy10uk's topic in DCS: F/A-18C
How can I just use the UFC from CAPT Z's profile, I already have cougar MFCD? I just want to put the UFC on the 2nd monitor? Anyone have an Idea? -
Capt Zeen F/A-18C Beta Helios Profile ! ! !
yeldraw1 replied to Capt Zeen's topic in PC Hardware and Related Software
NO images in HELIOS editor Downloaded Capt Z's profile for the f18, but in editor I get NO Cockpit images, just a few red boxes with X's in them. I use Helios with the A10 and works great and can edit the A10 cockpit but not on CAPT Z's helios profile -
[NOT YET SUPPORTED][MERGED] DDI/AMPCD DISPLAYS EXPORT
yeldraw1 replied to ScopeDope's topic in Bugs and Problems
[NOT SUPPORTED YET] TOP MFCDs Cant get the top MFCDs to work, the lower one is turned on.? -
the middle item is a canopy knife. It the electric systems fails the pilot can use it to punch through the glass canopy to escape. it is a heavy short knife.
-
T monitor config Ok throwing this out there to see if someone can help. I fly DCS a-10c, I have 3 27 in monitors and a 19 in. They are set up in a T configuration. I am trying to get my exports on the 19 in monitor but cant. main screen is 5760x1080 with 1366x768 for the bottom 19 in. in game I can extend the res to 5760X1440 or 5760x1848, which does let me move the MFD to the lower screen but also extends the main view to it also. below is the monitor.lua and pic of my setup and how it looks As you can see in the lower monitor you can see the cockpit gauges.. Thanks guys _ = function(p) return p; end; name = _('WAD Screen'); Description = 'Configuration with 3 identical monitors each with its own camera' Viewports = { Left = { x = 0; y = 0; width = screen.width / 3; height = screen.height; viewDx = -1; viewDy = 0; aspect = screen.aspect / 3; }, Center = { x = screen.width / 3; y = 0; width = screen.width / 3; height = screen.height; viewDx = 0; viewDy = 0; aspect = screen.aspect / 3; }, Right = { x = screen.width * 2 / 3; y = 0; width = screen.width / 3; height = screen.height; viewDx = 1; viewDy = 0; aspect = screen.aspect / 3; } } LEFT_MFCD = { x = 2175; y = 1073; width = 370; height = 377; } RIGHT_MFCD = { x = 3185; y = 1073; width = 377; height = 372; } RWR_SCREEN = { x = 3900; y = -10; width = 200; height = 200; } UIMainView = Viewports.Center --[[ also you can use "displays" table to perfectly match you configuration . it is generated by DCS automatically. displays table is contains information about all currently attached displays for example my setup is : displays = { [1] = { x = 0, -- note : x == 0 and y == 0 is always mark primary windows display y = 0, width = 1920, height = 1200 }, [2] = { x = -1440, -- mark that secondary display is on left side of primary display y = 0, width = 1440, height = 900 }, ... for all displays } screen table also contain x, y members which mark top left corner of DCS window note about fullscreen : directx doesn't allow fullscreen applications with resolutions more than primary display can handle, so multimonitor presets in DCS will fall back to windowed mode if fullscreen initialization failed ( this info also will be printed to dcs.log) 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 --]]