Matrix Games Forums

Forums  Register  Login  Photo Gallery  Member List  Search  Calendars  FAQ 

My Profile  Inbox  Address Book  My Subscription  My Forums  Log Out

Cargo Mission question

 
View related threads: (in this forum | in all forums)

Logged in as: Guest
Users viewing this topic: none
  Printable Version
All Forums >> [New Releases from Matrix Games] >> Command: Modern Operations series >> Cargo Mission question Page: [1]
Login
Message << Older Topic   Newer Topic >>
Cargo Mission question - 12/30/2021 3:54:48 PM   
1nutworld


Posts: 365
Joined: 4/13/2014
Status: offline
Hey everyone,

I'm looking to send a helo with a SEAL team ashore to drop them off, at an LZ then have the SEAL team advance to a position to overlook a specific area looking for targets to designate, so I can then launch an air-to-ground strike from my Carrier group (same one that SEAL team departed from). Then after the strike, and subsequent follow-ups (if needed) to have the SEAL team transit back to the LZ for pickup by helo.

What would be the most efficient way to accomplish all of these missions.

I am not familiar with cargo operations, but I suspect that they can be done with some of the developments in that area that CMO has progressed to.

Thanks in advance.

_____________________________

USS Dwight D. Eisenhower (CVN-69) 1990-1994.
Post #: 1
RE: Cargo Mission question - 12/30/2021 4:12:37 PM   
BeirutDude


Posts: 2625
Joined: 4/27/2013
From: Jacksonville, FL, USA
Status: offline
So using "cargo missions" you can't actually land a specific "Seal Team." You can land a unit like one and call it a Seal Team, but if you want to actually have a "Seal Team" then you need to teleport that seal team in when the transport vehicle is in the deployment zone (easiest way).

Another way to do it would be to generate the unit(s) in the deployment zone when the transport arrives. Just a little bit of Lua coding.

_____________________________

"Some people spend an entire lifetime wondering if they made a difference. The Marines don't have that problem."
PRESIDENT RONALD REAGAN, 1985

I was Navy, but Assigned TAD to the 24th MAU Hq in Beirut. By far the finest period of my service!

(in reply to 1nutworld)
Post #: 2
RE: Cargo Mission question - 12/30/2021 4:32:48 PM   
1nutworld


Posts: 365
Joined: 4/13/2014
Status: offline

quote:

ORIGINAL: BeirutDude

Another way to do it would be to generate the unit(s) in the deployment zone when the transport arrives. Just a little bit of Lua coding.


are you familiar with what that coding would be? I am not a programmer, and have made a few attempts at inserting lua coding into practice scenarios....and watching YouTube, but it's nothing I am even close to being proficient at.

_____________________________

USS Dwight D. Eisenhower (CVN-69) 1990-1994.

(in reply to BeirutDude)
Post #: 3
RE: Cargo Mission question - 12/30/2021 6:59:55 PM   
BeirutDude


Posts: 2625
Joined: 4/27/2013
From: Jacksonville, FL, USA
Status: offline
quote:

are you familiar with what that coding would be? I am not a programmer, and have made a few attempts at inserting lua coding into practice scenarios....and watching YouTube, but it's nothing I am even close to being proficient at.


Sure, it's actually an easy pre-written scripts (which is about my ability as well)...
ScenEdit_AddUnit(table)

Now the table gets a bit tricky...

{type = 'Facility (or Ship, or Submarine, etc)', name = 'Unit_Name_You_Want', heading = 150 (in degrees), dbid = 884 (must get this right for the units looking in the database, might have to play some to get it right as it's tricky), side = 'Side_Name', latitude='12.055086', longitude='-61.743581' (remember the "-" sign for Southern Hemisphere and Western Hemisphere)}

These will insert SEAL Teams in Grenada (you can create a " United States " side in a sandbox scenario and run them in the Lua Script Console under Editor...
ScenEdit_AddUnit({type = 'Facility', name = 'SEAL TEAM 2', heading = 150, dbid = 884, side = 'United States', latitude='12.055086', longitude='-61.743581'})
ScenEdit_AddUnit({type = 'Facility', name = 'SEAL TEAM 6-A', heading = 090, dbid = 884, side = 'United States', latitude='12.018824', longitude='-61.771758'})
ScenEdit_AddUnit({type = 'Facility', name = 'SEAL TEAM 6-B', heading = 090, dbid = 884, side = 'United States', latitude='12.019561', longitude='-61.771675'})

Hope this helps!

Al

< Message edited by BeirutDude -- 12/30/2021 7:00:28 PM >


_____________________________

"Some people spend an entire lifetime wondering if they made a difference. The Marines don't have that problem."
PRESIDENT RONALD REAGAN, 1985

I was Navy, but Assigned TAD to the 24th MAU Hq in Beirut. By far the finest period of my service!

(in reply to 1nutworld)
Post #: 4
RE: Cargo Mission question - 12/30/2021 7:46:49 PM   
BeirutDude


Posts: 2625
Joined: 4/27/2013
From: Jacksonville, FL, USA
Status: offline
On the Table there are other parameters that can be added, and folks who are more conversant in Lua scripting than myself can help there. For example I'm sure you can set a Speed and Depth for a Submarine in addition to a Direction. Same for an Aircraft sure you can set an altitude and loadout...

ScenEdit_AddUnit({type ='Aircraft', name ='F-15C Eagle', loadoutid =16934, heading =0, dbid =3500, side ='NATO', Latitude="N46.00.00",Longitude="E25.00.00", altitude="5000 ft",autodetectable="false",holdfire="true",proficiency=4})

This site is good for a first guess on the Lua Functions but there are plenty of people willing to help inn a positive way. after all the more people who understand features the better the scenarios are for everyone.

http://commandlua.github.io/

< Message edited by BeirutDude -- 12/30/2021 8:00:51 PM >


_____________________________

"Some people spend an entire lifetime wondering if they made a difference. The Marines don't have that problem."
PRESIDENT RONALD REAGAN, 1985

I was Navy, but Assigned TAD to the 24th MAU Hq in Beirut. By far the finest period of my service!

(in reply to BeirutDude)
Post #: 5
RE: Cargo Mission question - 12/30/2021 9:54:08 PM   
1nutworld


Posts: 365
Joined: 4/13/2014
Status: offline

quote:

ORIGINAL: BeirutDude

quote:

are you familiar with what that coding would be? I am not a programmer, and have made a few attempts at inserting lua coding into practice scenarios....and watching YouTube, but it's nothing I am even close to being proficient at.


Sure, it's actually an easy pre-written scripts (which is about my ability as well)...
ScenEdit_AddUnit(table)

Now the table gets a bit tricky...

{type = 'Facility (or Ship, or Submarine, etc)', name = 'Unit_Name_You_Want', heading = 150 (in degrees), dbid = 884 (must get this right for the units looking in the database, might have to play some to get it right as it's tricky), side = 'Side_Name', latitude='12.055086', longitude='-61.743581' (remember the "-" sign for Southern Hemisphere and Western Hemisphere)}

These will insert SEAL Teams in Grenada (you can create a " United States " side in a sandbox scenario and run them in the Lua Script Console under Editor...
ScenEdit_AddUnit({type = 'Facility', name = 'SEAL TEAM 2', heading = 150, dbid = 884, side = 'United States', latitude='12.055086', longitude='-61.743581'})
ScenEdit_AddUnit({type = 'Facility', name = 'SEAL TEAM 6-A', heading = 090, dbid = 884, side = 'United States', latitude='12.018824', longitude='-61.771758'})
ScenEdit_AddUnit({type = 'Facility', name = 'SEAL TEAM 6-B', heading = 090, dbid = 884, side = 'United States', latitude='12.019561', longitude='-61.771675'})

Hope this helps!

Al


I appreciate the direction and I will be playing around with some of these things over the next day or two!

Thank you, good sir!

Scott


_____________________________

USS Dwight D. Eisenhower (CVN-69) 1990-1994.

(in reply to BeirutDude)
Post #: 6
Page:   [1]
All Forums >> [New Releases from Matrix Games] >> Command: Modern Operations series >> Cargo Mission question Page: [1]
Jump to:





New Messages No New Messages
Hot Topic w/ New Messages Hot Topic w/o New Messages
Locked w/ New Messages Locked w/o New Messages
 Post New Thread
 Reply to Message
 Post New Poll
 Submit Vote
 Delete My Own Post
 Delete My Own Thread
 Rate Posts


Forum Software © ASPPlayground.NET Advanced Edition 2.4.5 ANSI

0.641