-
Posts
210 -
Joined
-
Last visited
Content Type
Profiles
Forums
Events
Everything posted by Geschirre
-
DCS World 2025 Screenshots and Video Thread
Geschirre replied to ST0RM's topic in Screenshots and Videos
-
DCS World 2025 Screenshots and Video Thread
Geschirre replied to ST0RM's topic in Screenshots and Videos
-
F-23A mod by ThunderStruck Simulations
Geschirre replied to Thunder Chicken22's topic in Flyable/Drivable Mods for DCS World
Wow! I guess the guy who has devoted over a year to this project to provide us with an enjoyable MOD didn't do any research on the F-23A. Enclosed is a cropped image from a file that matches source documents of what the F-23A would look like. If you click on the link you'll be able to see plenty of detail concerning the F-23A. https://i.imgur.com/a5ytmhg.jpeg This is the book I immediately referenced in regards to F-23A schematics (pg 102), there are English captions. NORTHROP YF-23 Photo Book (Legend of the Black Widow II) -
F-23A mod by ThunderStruck Simulations
Geschirre replied to Thunder Chicken22's topic in Flyable/Drivable Mods for DCS World
Agreed the YF-23 has the refueling receptacle centered. I think the name of this topic is... I guess the creator of the MOD decided to add some refueling markings on the port side for no reason. -
DCS World 2025 Screenshots and Video Thread
Geschirre replied to ST0RM's topic in Screenshots and Videos
-
F-23A mod by ThunderStruck Simulations
Geschirre replied to Thunder Chicken22's topic in Flyable/Drivable Mods for DCS World
-
I put them in \Aircraft and they show just fine in structures. P.S. thanks for all the amazing liveries crazyeddie!
-
DCS World 2025 Screenshots and Video Thread
Geschirre replied to ST0RM's topic in Screenshots and Videos
14 March 1984, 120 miles off the coast of Vietnam. Wichita 6 and 7 of VF-1/CVW-2/CV-63 USS Kitty Hawk// intercept a pair of Tu-16K Badger C's out of Cam Ranh Base. (I know there is a Cold War Assets Pack Mod with the Tu-16 with a glass nose, I'm trying to make some stuff without mods to be user friendly ) -
DCS World 2025 Screenshots and Video Thread
Geschirre replied to ST0RM's topic in Screenshots and Videos
-
DCS World 2025 Screenshots and Video Thread
Geschirre replied to ST0RM's topic in Screenshots and Videos
-
DCS World 2025 Screenshots and Video Thread
Geschirre replied to ST0RM's topic in Screenshots and Videos
-
DCS World 2025 Screenshots and Video Thread
Geschirre replied to ST0RM's topic in Screenshots and Videos
-
DCS World 2025 Screenshots and Video Thread
Geschirre replied to ST0RM's topic in Screenshots and Videos
-
DCS World 2025 Screenshots and Video Thread
Geschirre replied to ST0RM's topic in Screenshots and Videos
-
My uncle was contracted from Raytheon by BAE (whatever it was called in the 80s) to create a new UHF array for the Nimrod in the nacelle on top of the tail. The British project manager stipulated that the housing should withstand 26 Gs (yes twenty-six Gs). Why? The rudder pins were rated for 26 G, therefore the UHF array needed to be able withstand 26 Gs. Why, and how the rudder pins rated to 26 G? He couldn't figure that out, but he and his team tried to explain they didn't think the Nimrod would hold up even after 5 Gs, but the project manager was adamant, 26G or he would find someone else. So they went to White Sands to use a centrifuge in the desert (rated for 42 G) and develop a housing that would withstand 26 G (he said a lot of housings disintegrated), but after $800,000+ they managed to create a housing that help up to 26 G.
-
DCS World 2025 Screenshots and Video Thread
Geschirre replied to ST0RM's topic in Screenshots and Videos
-
Thanks seabat! That did it! I also tried landing the F-14 empty, little fuel that worked! Arresting cables do work.
-
This is a lot of fun! Thanks for sharing!!! I had to fix some .lua stuff in the liveries (glass/anchor/other small textures weren't showing up) and created some other liveries to make it more to my liking. I couldn't figure how to fix the texture for the object in the mission editor. I went back and forth with the different .luas you included and it didn't seem to make a difference. I tried landing an Su-33 a couple times and the arresting cables don't work, didn't think they would, but figured i'd try. Thanks again for this monstrosity I enjoy it! Edit: Arresting cables work!
-
DCS World 2025 Screenshots and Video Thread
Geschirre replied to ST0RM's topic in Screenshots and Videos
-
Bitburg looks great! All the hardened shelters look spot on. Thanks!!!
- 484 replies
-
- 2
-
-
VSN F-106A/B Delta Dart problem
Geschirre replied to Perseus's topic in Flyable/Drivable Mods for DCS World
Add the line to the Su-25/F-15/A-10/Su-27/Su-33/MiG-29... whatever, to DCS World OpenBeta\Mods\aircraft (NOT SAVED GAME) entry.lua . }, load_immediately = true, Or download: DCS World-mods-aircraft folder.zip https://e.pcloud.link/publink/show?code=kZgx6gZWe5YWYUN63mIhQOYf9iAi8TzeMPX Or copy: My F-15C entry.lua file looks like this: self_ID = "F-15C" declare_plugin(self_ID, { image = "FC3.bmp", installed = true, -- if false that will be place holder , or advertising dirName = current_mod_path, displayName = _("F-15C"), developerName = _("Belsimtek"), fileMenuName = _("F-15C"), update_id = "F-15C", registryPath = "Eagle Dynamics\\F15", version = __DCS_VERSION__, state = "installed", info = _("The McDonnell Douglas / Boeing F-15C Eagle is a highly maneuverable fourth-generation twin-engine all-weather tactical fighter. It has been the air superiority fighter mainstay of U.S. and NATO forces since the 1970s and will remain as such well into the 21st century.Air superiority is achieved through high maneuverability at a wide range of airspeeds and altitudes, as well as advanced weapons and avionics."), Skins = { { name = "F-15C", dir = "Skins/1" }, }, Missions = { { name = _("F-15C"), dir = "Missions", training_ids = {EN = 'F-15C_video_EN', RU = 'F-15C_video_RU',}, }, }, LogBook = { { name = _("F-15C"), type = "F-15C", }, }, Options = { { name = _("F-15C"), nameId = "F-15C", dir = "Options", CLSID = "{F-15C options}" }, }, InputProfiles = { ["F-15C"] = current_mod_path .. '/Input', }, binaries = { 'F15CCWS', 'F15' }, load_immediately = true, }) ---------------------------------------------------------------------------------------- mount_vfs_texture_path (current_mod_path .. "/Cockpit/Textures/F-15C-CPT-TEXTURES") mount_vfs_model_path (current_mod_path .. "/Cockpit/Shape") mount_vfs_liveries_path (current_mod_path .. "/Liveries") local cfg_path = current_mod_path .. "/FM/F15/config.lua" dofile(cfg_path) F15FM[1] = self_ID F15FM[2] = 'F15' F15FM.config_path = cfg_path F15FM.old = true mount_vfs_texture_path(current_mod_path .. "/Skins/1/ME")--for simulator loading window MAC_flyable('F-15C', current_mod_path..'/Cockpit/KneeboardRight/',F15FM, current_mod_path..'/Comm/F-15C.lua') ---------------------------------------------------------------------------------------- plugin_done() -
Bitburg! Yes! Thank you!
- 484 replies
-
- 3
-