-
Posts
196 -
Joined
-
Last visited
-
@AngelRR92The Su-25T avionics are very good in my opinion, so you can use that instead. The CCIP system it uses is way better than this. About what you're asking, you would need to create a custom indicator device in the aircraft's cockpit folder. There are several existing examples you can draw from, like the A-29B, C-130, and Su-30 mods. I'm sure there are guides or tutorials on this forum that can help guide you through setting that up. Once you figure it out, the parameters are what you would use to move the indicator elements.
-
I don't know which version is buggier at this point! I guess I'll switch to MT.
-
Basic EFM template (mod + source code)
Sérvalpilot replied to Sérvalpilot's topic in Utility/Program Mods for DCS World
@DCSjunked You can change the default trim value so it doesn't reset to 0 on mission reset. About afterburners, here's a simple thing you can do: if (throttle > 0.9) afterburner = true; if (afterburner = true) thrust *= 1.75 For the afterburner effects, you can use the actuator function in a similar way to the gear and flaps, but tie it to throttle.- 44 replies
-
- flight model
- efm
-
(and 1 more)
Tagged with:
-
Sérvalpilot started following ST map is blank.
-
-
Basic EFM template (mod + source code)
Sérvalpilot replied to Sérvalpilot's topic in Utility/Program Mods for DCS World
@DCSjunked That seems like a problem with the aircraft's center of mass. Maybe the weapons are loaded on one side? Check the aircraft definition file, so something like F117.lua, and see if the pylons Z coordinates are not symmetrical. Also, if you modified the center of mass in the config.lua file in the FM folder, make sure the Z coordinate is 0. Lastly, on the C++ side, check the wing positions near the top of ed_fm_template.cpp (which I'll probably move to fm_data.h later). About afterburners, there's a couple ways you can do that. First, you can get a second max thrust table for "wet" mode and when the throttle is above a certain value, switch the thrust calculations to draw from that table instead of the "dry" mode table. Second, you could simply multiply the thrust value; in my own research it seems like most fighter engines generate around 1.7 times more thrust in wet mode. Also, I left in some comments in the draw_args function about afterburner visual effects.- 44 replies
-
- flight model
- efm
-
(and 1 more)
Tagged with:
-
Sérvalpilot started following Current Issue with FC3 Mods and Various problems with the newest version (2.9.6.57650)
-
Various problems with the newest version (2.9.6.57650)
Sérvalpilot replied to Sérvalpilot's topic in General Bugs
I found something else: in ST, mirrors are VERY broken. By the way, the framerate issue I reported in the last post seems to have been resolved, maybe in the hotfix (2.9.6.58056). -
Basic EFM template (mod + source code)
Sérvalpilot replied to Sérvalpilot's topic in Utility/Program Mods for DCS World
Update 1.1 is now out on GitHub! This new version adds support for aircraft carrier catapult launching, better roll stability, and other minor stuff. As always, feedback is much appreciated!- 44 replies
-
- 5
-
-
-
- flight model
- efm
-
(and 1 more)
Tagged with:
-
Various problems with the newest version (2.9.6.57650)
Sérvalpilot replied to Sérvalpilot's topic in General Bugs
@Flappie I mentioned that the map issue was just in ST, everything else is in both versions. There's also another problem I noticed. In MT, the framerate quickly drops with increasing time speed (4x and up), whereas in ST the framerate is still good up to like 30x time then it starts to struggle. It might just be my PC. -
Current Issue with FC3 Mods
Sérvalpilot replied to Spino's topic in Flyable/Drivable Mods for DCS World
These mods still work, it just takes an extra step. What you have to do is fly a mission that uses that aircraft's avionics then you can use the mod. For example, if there's an aircraft that uses Su-27 avionics, start a mission with you in the Su-27 cockpit, then exit and fly the mod aircraft. You have to do this every time you start DCS. It's annoying, I know. -
These mods still work, it just takes an extra step. What you have to do is fly a mission that uses that aircraft's avionics then you can use the mod. In this case, start a mission in the F-15C (make sure you're in the cockpit), exit, then fly the F-22. It's annoying, I know.
-
I found several bugs and issues. Map elements in the single thread version don't reduce detail with zoom. Leads to framerate drop and cluttered map when zoomed out. The info/status bar (ctrl + y) is a bit laggy, like it updates at a lower rate than before. Weapon view (F6) is pointed straight up by default. The floating effect doesn't work. MSAA doesn't seem to work in the MT version, this might not be new. It's a lot less stable in general. It crashes a lot in both single and multi threaded versions, especially the former. Sometimes it crashes without even leaving a crash log! Many community mods stopped working because of the new Flaming Cliffs stuff. I have a feeling that won't be fixed (and that makes me sad). There are a couple other issues that aren't new but I'd like to bring them up anyway. Kh-25MP has a missing launch cue. It still works with launch permission override. Some missiles in the AGM-65 family have missing icons.
-
Current Issue with FC3 Mods
Sérvalpilot replied to Spino's topic in Flyable/Drivable Mods for DCS World
I feared something like this would happen one day, and here it is. It's sad. Only Su-25T avionics still work. There might still be a way to access the FC3 avionics but other than that, the alternative would be recreating all the FC3 stuff those mods used. Custom devices are quite limited however. avSimpleRadar for example has a tendency to lose contacts for no reason and can't sense anything less than 300m away! I predict that more people will go down routes like the A-4E or EMB-314/A-29B mods to achieve something similar standalone. It's tough, but I'd be willing to support such projects. -
What is ed_object_access.h? (maybe figured out)
Sérvalpilot replied to Sérvalpilot's topic in How To Mod for DCS World
I finally figured it out! I think... As far as I see, it's a way of accessing the current aircraft's 3d model args. There's a function that returns the aircraft's ID, too. If that's all it can do, then I'm disappointed. You can already control aircraft args in the FM using ed_fm_set_draw_args, so what's the point of using this method, honestly? Maybe I'll experiment with it more and see if there's anything else to it. -
Default FC3 aircraft loadout files?
Sérvalpilot replied to PhantomHans's topic in How To Mod for DCS World
We used to be able to, but now we can't. ED made those Lua files hidden and encrypted. However, you can still modify the loadouts themselves. What you can do is go to DCSWorld\MissionEditor\data\scripts\UnitPayloads\MiG-23MLD. There, you can manually edit the payload configurations you see in the mission editor/planner. Be sure to make a backup! -
Basic EFM template (mod + source code)
Sérvalpilot replied to Sérvalpilot's topic in Utility/Program Mods for DCS World
Glad I could help! The fm.old = # is for aircraft that use FC3 avionics.- 44 replies
-
- 1
-
-
- flight model
- efm
-
(and 1 more)
Tagged with: