Page 1 of 1

Problem with launching fighters from carrier...

Posted: Fri Jul 23, 2004 11:59 am
by TexMurphy
Ok here is what Im doing and it aint working.

Code: Select all

 element: {
    name:      "Element",
    design:    "Arrow",
    squadron:  "Squad",
    mission:   "Misc",
 
    intel:     "Located",
    count:     2,
    alert:     true,
    command_ai:0,
    iff:       1,
    player:    1,
    playable:  false,
    region:    "McAuliffeVikyah 1",
    loc:       (-20000, 8000, 0),
 
    loadout:   { ship: -1, name: "Clean" },
 }
 
 element: {
    name:      "Squad",
    design:    "Arrow",
    carrier:   "Base",
    commander: "Base",
    mission:   "Patrol",
 
    intel:     "Located",
    count:     1,
    command_ai:1,
    iff:       1,
    region:    "McAuliffeVikyah 1",
    loc:       (-19000, -15000, 0),
 
    loadout:   { ship: -1, name: "Clean" },
 }
 
 
 
 element: {
    name:      "Base",
    design:    "Vesuvius",
    mission:   "Patrol",
 
    intel:     "Located",
    count:     1,
    command_ai:1,
    iff:       1,
    playable:  false,
    region:    "McAuliffeVikyah 1",
    loc:       (0, 0, 0),
 }
 

As you see "Squad" is assigned to the carrier "Base". "Element" is derived of "Squad" and set to Alert. This *should* launch my fighters of the carrier at mission start.

But it aint workin.

Any ideas?

Tex

RE: Problem with launching fighters from carrier...

Posted: Fri Jul 23, 2004 5:24 pm
by Mehrunes
Your squadron only has 1 ship in it. Yet you're trying to launch 2 craft from it.

RE: Problem with launching fighters from carrier...

Posted: Fri Jul 23, 2004 5:55 pm
by TexMurphy
Ok now its set to 2. still no go though.

Im attaching a file that is the mission file. Do you think you could take a look at it and then post it back if you get it to work?

would really apriciate it.

Tex

RE: Problem with launching fighters from carrier...

Posted: Fri Jul 23, 2004 6:07 pm
by John DiCamillo
Try reversing the order of the elements in the mission file. Carrier should come first, then squadrons, then alert fighter packages.

RE: Problem with launching fighters from carrier...

Posted: Fri Jul 23, 2004 6:20 pm
by TexMurphy
If I put the carrier first then no matter what setting I have I will be in command of the carrier. This is even if I have NO player flag on the carrier.

Tex

RE: Problem with launching fighters from carrier...

Posted: Fri Jul 23, 2004 6:22 pm
by TexMurphy
actually scratch that... If I have base, element, squad THEN its always the carrier... if I do what you say milo it works.

Thanks.
Tex