How to make several aircraft with different contents in Type=ParaDrop?

Asked by Gluk-v48

Is there a way to make this point several aircraft with different contents in Type=ParaDrop? For example, I want to be the first aircraft delivered to me 8 E1, and the second 4 GGI.

Question information

Language:
English Edit question
Status:
Solved
For:
Ares Edit question
Assignee:
No assignee Edit question
Solved by:
AlexB
Solved:
Last query:
Last reply:
Revision history for this message
Gluk-v48 (gluk-v48) said :
#1

I just look at the tag [Superweapon]►Paradrop.ID.PlaneX.*= And cannot understand how it works, and whether you can use it to do what I described.

Revision history for this message
Best AlexB (alexander-b) said :
#2

The documentation got a few tag names wrong. It's "ParaDrop", not "Paradrop", as it is called in the examples also. This has been updated and the online manual at http://ares-developers.github.com/Ares-docs/new/superweapons.html#type-paradrop-and-type-amerparadrop is fixed already.

To create a ParaDrop with 8 E1 in plane 1 and 4 GGI in plane 2, use these codes:
ParaDrop.Aircraft=PDPLANE ; used for both planes, as long as you don't set Paradrop.Plane2.Aircraft. Remove this to use country-specific planes instead.
ParaDrop.Count=2
ParaDrop.Types=E1
ParaDrop.Num=8
ParaDrop.Plane2.Types=GGI
ParaDrop.Plane2.Num=4

ParaDrop.<ID>.Plane customizes the specified plane for sides or countries. For example:
ParaDrop.ThirdSide.Aircraft= ; sets the aircraft used for the countries of side ThirdSide.

ParaDrop.German.Plane2.Num=1 ; replaces the types and numbers of items of plane 2 for he country called German
ParaDrop.German.Plane2.Types=AUDI ; only use them together to override plane contents.

Revision history for this message
Gluk-v48 (gluk-v48) said :
#3

Thanks AlexB, that solved my question.