Jump to content

mission editor SU-33 as blue team?


fs2004

Recommended Posts

The Su-27 and the MiG-29s come in Ukrainian flavors, but AFAIK, the Su-33, Kuznetsov, and the Il-78M are only Russian.

 

Which is kind of baffling—it would make more sense to me to have all of the flyables and all of the support aircraft for those flyables available on both sides. If we're going to accept a Russian A-10, I don't see why we can't have a Ukrainian naval Flanker and Kuznetsov.

Black Shark, Harrier, and Hornet pilot

Many Words - Serial Fiction | Ka-50 Employment Guide | Ka-50 Avionics Cheat Sheet | Multiplayer Shooting Range Mission

Link to comment
Share on other sites

You just need to add Russia to the blue coalition when you start the mission build in the ME.

 

There is a way to move aircraft types (or other coalition assets) around after that point but it involves some dabbling in the .lua and though it's not entirely complicated I don't know the process as well as others. Grimes has explained it a few different times but you need to search for "changing coalitions in ME" to find them.

"ENO"

Type in anger and you will make the greatest post you will ever regret.

 

"Sweetest's" Military Aviation Art

Link to comment
Share on other sites

You could create a new mission, set the sides up so Russia and the US are both on blue team. Then you could have Su-33s flying alongside F-15Cs and such. :thumbup:

 

Go to the Mission Editor, click the button for "New". It then lets you set up the sides ("Coalitions" I think?). I typically do this to put Germany on the Red side when I want to battle the AI FW-190, since Germany is by default on blue and seems to be the only country right now with the FW-190. Anyway, there you go. Hopefully that helps.

 

--NoJoe

 

[EDIT] Damn, sniped by ENO! :P

Link to comment
Share on other sites

Very easy, don't need to change coaliton just do this:

 

C:\Program Files\Eagle Dynamics\DCS World\Scripts\Database\

 

find file

 

db_countries

 

edit

 

Find Coalition Russia:

 

 

- RUSSIA

local units = {}

copyTable(units,db.default_units)

cnt_unit( units.Planes.Plane, "Su-33");

cnt_unit( units.Planes.Plane, "Su-25");

cnt_unit( units.Planes.Plane, "MiG-29S");

cnt_unit( units.Planes.Plane, "MiG-29A");

cnt_unit( units.Planes.Plane, "Su-27");

cnt_unit( units.Planes.Plane, "Su-25TM");

cnt_unit( units.Planes.Plane, "Su-25T");

cnt_unit( units.Planes.Plane, "MiG-31");

cnt_unit( units.Planes.Plane, "MiG-27K");

cnt_unit( units.Planes.Plane, "Su-30");

cnt_unit( units.Planes.Plane, "Tu-160");

cnt_unit( units.Planes.Plane, "Su-34");

cnt_unit( units.Planes.Plane, "Tu-95MS");

cnt_unit( units.Planes.Plane, "Tu-142");

cnt_unit( units.Planes.Plane, "MiG-25PD");

cnt_unit( units.Planes.Plane, "Tu-22M3");

cnt_unit( units.Planes.Plane, "A-50");

cnt_unit( units.Planes.Plane, "Yak-40");

cnt_unit( units.Planes.Plane, "An-26B");

cnt_unit( units.Planes.Plane, "An-30M");

cnt_unit( units.Planes.Plane, "Su-17M4");

cnt_unit( units.Planes.Plane, "MiG-23MLD");

cnt_unit( units.Planes.Plane, "MiG-25RBT");

cnt_unit( units.Planes.Plane, "Su-24M");

cnt_unit( units.Planes.Plane, "Su-24MR");

cnt_unit( units.Planes.Plane, "IL-78M");

cnt_unit( units.Planes.Plane, "IL-76MD");

cnt_unit( units.Planes.Plane, "L-39ZA");

cnt_unit( units.Planes.Plane, "P-51D");

 

and copy what ever you like to any country you like, then this type of unit appears in the mission editor..

 

 

example of USA

 

-- USA

local units = {}

copyTable(units,db.default_units)

cnt_unit( units.Planes.Plane, "A-10A");

cnt_unit( units.Planes.Plane, "Su-33");

cnt_unit( units.Planes.Plane, "F-117A");

cnt_unit( units.Planes.Plane, "C-17A");

cnt_unit( units.Planes.Plane, "F-15C");

cnt_unit( units.Planes.Plane, "F-15E");

cnt_unit( units.Planes.Plane, "F-16C bl.52d");

cnt_unit( units.Planes.Plane, "B-1B");

cnt_unit( units.Planes.Plane, "B-52H");

cnt_unit( units.Planes.Plane, "E-3A");

cnt_unit( units.Planes.Plane, "KC-135");

cnt_unit( units.Planes.Plane, "C-130");

cnt_unit( units.Planes.Plane, "F-14A");

cnt_unit( units.Planes.Plane, "S-3B");

cnt_unit( units.Planes.Plane, "S-3B Tanker");

cnt_unit( units.Planes.Plane, "F/A-18C");

cnt_unit( units.Planes.Plane, "E-2C");

cnt_unit( units.Planes.Plane, "F-16A");

cnt_unit( units.Planes.Plane, "F-5E");

cnt_unit( units.Planes.Plane, "RQ-1A Predator");

cnt_unit( units.Planes.Plane, "P-51D");

  • Like 2

[sIGPIC][/sIGPIC]

.....Vladimir, let's go to Sukhoi.......

Link to comment
Share on other sites

  • 3 years later...

For using all the same units on both Red and Blue, place Russia with USA on one side, USAF Aggressors on the other. This gave me all the planes and all the units available on each side. Of course, this has to be done prior to the start of the mission editing. Please follow above for reference.

Gigabyte Tech. 990FXA-UD3, AMD FX-8350 8 Core, 16 Gig RAM @ 2200 Mhz, Radeon X480, Oculus Rift

Link to comment
Share on other sites

  • 1 year later...
Very easy, don't need to change coaliton just do this:

 

C:\Program Files\Eagle Dynamics\DCS World\Scripts\Database\

 

find file

 

db_countries

 

edit

 

Find Coalition Russia:

 

 

- RUSSIA

local units = {}

copyTable(units,db.default_units)

cnt_unit( units.Planes.Plane, "Su-33");

cnt_unit( units.Planes.Plane, "Su-25");

cnt_unit( units.Planes.Plane, "MiG-29S");

cnt_unit( units.Planes.Plane, "MiG-29A");

cnt_unit( units.Planes.Plane, "Su-27");

cnt_unit( units.Planes.Plane, "Su-25TM");

cnt_unit( units.Planes.Plane, "Su-25T");

cnt_unit( units.Planes.Plane, "MiG-31");

cnt_unit( units.Planes.Plane, "MiG-27K");

cnt_unit( units.Planes.Plane, "Su-30");

cnt_unit( units.Planes.Plane, "Tu-160");

cnt_unit( units.Planes.Plane, "Su-34");

cnt_unit( units.Planes.Plane, "Tu-95MS");

cnt_unit( units.Planes.Plane, "Tu-142");

cnt_unit( units.Planes.Plane, "MiG-25PD");

cnt_unit( units.Planes.Plane, "Tu-22M3");

cnt_unit( units.Planes.Plane, "A-50");

cnt_unit( units.Planes.Plane, "Yak-40");

cnt_unit( units.Planes.Plane, "An-26B");

cnt_unit( units.Planes.Plane, "An-30M");

cnt_unit( units.Planes.Plane, "Su-17M4");

cnt_unit( units.Planes.Plane, "MiG-23MLD");

cnt_unit( units.Planes.Plane, "MiG-25RBT");

cnt_unit( units.Planes.Plane, "Su-24M");

cnt_unit( units.Planes.Plane, "Su-24MR");

cnt_unit( units.Planes.Plane, "IL-78M");

cnt_unit( units.Planes.Plane, "IL-76MD");

cnt_unit( units.Planes.Plane, "L-39ZA");

cnt_unit( units.Planes.Plane, "P-51D");

 

and copy what ever you like to any country you like, then this type of unit appears in the mission editor..

 

 

example of USA

 

-- USA

local units = {}

copyTable(units,db.default_units)

cnt_unit( units.Planes.Plane, "A-10A");

cnt_unit( units.Planes.Plane, "Su-33");

cnt_unit( units.Planes.Plane, "F-117A");

cnt_unit( units.Planes.Plane, "C-17A");

cnt_unit( units.Planes.Plane, "F-15C");

cnt_unit( units.Planes.Plane, "F-15E");

cnt_unit( units.Planes.Plane, "F-16C bl.52d");

cnt_unit( units.Planes.Plane, "B-1B");

cnt_unit( units.Planes.Plane, "B-52H");

cnt_unit( units.Planes.Plane, "E-3A");

cnt_unit( units.Planes.Plane, "KC-135");

cnt_unit( units.Planes.Plane, "C-130");

cnt_unit( units.Planes.Plane, "F-14A");

cnt_unit( units.Planes.Plane, "S-3B");

cnt_unit( units.Planes.Plane, "S-3B Tanker");

cnt_unit( units.Planes.Plane, "F/A-18C");

cnt_unit( units.Planes.Plane, "E-2C");

cnt_unit( units.Planes.Plane, "F-16A");

cnt_unit( units.Planes.Plane, "F-5E");

cnt_unit( units.Planes.Plane, "RQ-1A Predator");

cnt_unit( units.Planes.Plane, "P-51D");

 

Works for creating but have to go back to old file to play online because of integrity check.

i9 9900k, 64 Go RAM, RTX 4090, Warthog HOTAS Throttle & Stick, Saitek Combat Rudder, MFD Cougar, Trackir 5 Pro, Multipurpose UFC and Oculus Rift S (when I want some VR),

http://www.twitch.tv/zarma4074 /  https://www.youtube.com/user/Zarma4074 

 

Copy-of-DCS-A-10C-User-Bar-CMR-ConvertImage.jpg

Link to comment
Share on other sites

Su-33 is available for Russia, USAF Aggressors, Greece, and Algeria. Not really sure why it is on Greece and Algeria, but it and several FC3 aircraft are also available to both of them.

The right man in the wrong place makes all the difference in the world.

Current Projects:  Grayflag ServerScripting Wiki

Useful Links: Mission Scripting Tools MIST-(GitHub) MIST-(Thread)

 SLMOD, Wiki wishlist, Mission Editing Wiki!, Mission Building Forum

Link to comment
Share on other sites

Can this be done on a per mission basis by going into the .miz and finding the right spot and editing? I don’t want to change things globally just on an existing mission.

 

Very easy, don't need to change coaliton just do this:

 

C:\Program Files\Eagle Dynamics\DCS World\Scripts\Database\

 

find file

 

db_countries

 

edit

 

Find Coalition Russia:

 

 

- RUSSIA

local units = {}

copyTable(units,db.default_units)

cnt_unit( units.Planes.Plane, "Su-33");

cnt_unit( units.Planes.Plane, "Su-25");

cnt_unit( units.Planes.Plane, "MiG-29S");

cnt_unit( units.Planes.Plane, "MiG-29A");

cnt_unit( units.Planes.Plane, "Su-27");

cnt_unit( units.Planes.Plane, "Su-25TM");

cnt_unit( units.Planes.Plane, "Su-25T");

cnt_unit( units.Planes.Plane, "MiG-31");

cnt_unit( units.Planes.Plane, "MiG-27K");

cnt_unit( units.Planes.Plane, "Su-30");

cnt_unit( units.Planes.Plane, "Tu-160");

cnt_unit( units.Planes.Plane, "Su-34");

cnt_unit( units.Planes.Plane, "Tu-95MS");

cnt_unit( units.Planes.Plane, "Tu-142");

cnt_unit( units.Planes.Plane, "MiG-25PD");

cnt_unit( units.Planes.Plane, "Tu-22M3");

cnt_unit( units.Planes.Plane, "A-50");

cnt_unit( units.Planes.Plane, "Yak-40");

cnt_unit( units.Planes.Plane, "An-26B");

cnt_unit( units.Planes.Plane, "An-30M");

cnt_unit( units.Planes.Plane, "Su-17M4");

cnt_unit( units.Planes.Plane, "MiG-23MLD");

cnt_unit( units.Planes.Plane, "MiG-25RBT");

cnt_unit( units.Planes.Plane, "Su-24M");

cnt_unit( units.Planes.Plane, "Su-24MR");

cnt_unit( units.Planes.Plane, "IL-78M");

cnt_unit( units.Planes.Plane, "IL-76MD");

cnt_unit( units.Planes.Plane, "L-39ZA");

cnt_unit( units.Planes.Plane, "P-51D");

 

and copy what ever you like to any country you like, then this type of unit appears in the mission editor..

 

 

example of USA

 

-- USA

local units = {}

copyTable(units,db.default_units)

cnt_unit( units.Planes.Plane, "A-10A");

cnt_unit( units.Planes.Plane, "Su-33");

cnt_unit( units.Planes.Plane, "F-117A");

cnt_unit( units.Planes.Plane, "C-17A");

cnt_unit( units.Planes.Plane, "F-15C");

cnt_unit( units.Planes.Plane, "F-15E");

cnt_unit( units.Planes.Plane, "F-16C bl.52d");

cnt_unit( units.Planes.Plane, "B-1B");

cnt_unit( units.Planes.Plane, "B-52H");

cnt_unit( units.Planes.Plane, "E-3A");

cnt_unit( units.Planes.Plane, "KC-135");

cnt_unit( units.Planes.Plane, "C-130");

cnt_unit( units.Planes.Plane, "F-14A");

cnt_unit( units.Planes.Plane, "S-3B");

cnt_unit( units.Planes.Plane, "S-3B Tanker");

cnt_unit( units.Planes.Plane, "F/A-18C");

cnt_unit( units.Planes.Plane, "E-2C");

cnt_unit( units.Planes.Plane, "F-16A");

cnt_unit( units.Planes.Plane, "F-5E");

cnt_unit( units.Planes.Plane, "RQ-1A Predator");

cnt_unit( units.Planes.Plane, "P-51D");

Link to comment
Share on other sites

  • 1 year later...

Hello folks,

 

wondering if you can do the same with Admiral Kuznetsov into blue team:pilotfly:, but can't find the db for the navy. I've checked the db_units_ships.lua but i couldn't find the navy_file("navy/red/kuznetsov.lua"), but it wasn't a much of help :helpsmilie:

 

 

Best Regards

e33et

Link to comment
Share on other sites

Hello folks,

 

wondering if you can do the same with Admiral Kuznetsov into blue team:pilotfly:, but can't find the db for the navy. I've checked the db_units_ships.lua but i couldn't find the navy_file("navy/red/kuznetsov.lua"), but it wasn't a much of help :helpsmilie:

 

 

Best Regards

e33et

This is an old thread, ED added the country "USAF Aggressors" which has access to all units in the game. Just add this to blue to let blue use any unit.

Awaiting: DCS F-15C

Win 10 i5-9600KF 4.6 GHz 64 GB RAM RTX2080Ti 11GB -- Win 7 64 i5-6600K 3.6 GHz 32 GB RAM GTX970 4GB -- A-10C, F-5E, Su-27, F-15C, F-14B, F-16C missions in User Files

 

Link to comment
Share on other sites

  • Recently Browsing   0 members

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