ModEnc is currently in Maintenance Mode: Changes could occur at any given moment, without advance warning.

Using MakeInfantry Logic

From ModEnc
Jump to navigation Jump to search
  • tutorial by Marshall

If you've been reading up on MakeInfantry (mutation) logic elsewhere and haven't really understood much then that's okay - this tutorial is probably more easily understood if you haven't read any other MakeInfantry information before.

I'm going to start with a "lie to children".
There can be only one player-owned InfantryType that is created from MakeInfantry logic.
Please bear that in mind when reading the following steps.

1. You need to list all the InfantryTypes that you would like to spawn using MakeInfantry logic. You do this in a comma separated list on the following flag:
rulesmd.ini[General]AnimToInfantry
For example, AnimToInfantry=BRUTE,NEWUNIT,GHOST
Later on we will refer to these InfantryTypes by their list index. In the above example, BRUTE would have an index of zero, NEWUNIT would have an index of 1 and GHOST would have an index of 2.

2. In order to spawn an InfantryType from the AnimToInfantry list then an animation must be played - the InfantryType will be spawned once the animation finishes.
To make the spawned InfantryType player-owned, another infantry unit in-game must be killed by a weapon that was fired by a player-owned unit. Further more, the weapon's Warhead must have InfDeath=9 set.
Note that MutateWarhead and MutateExplosionWarhead are only used by the Genetic Mutator super weapon and have no bearing on this logic. You can change the animation referenced by InfDeath 9 if you want (see InfDeaths).

3. In artmd.ini, find or create the animation section for the animation that you want to spawn an InfantryType (see [GENDEATH] as an example).
You need to set MakeInfantry=X on your animation, where X is the list index number of the InfantryType you wish to spawn, taken from the AnimToInfantry flag discussed in the first step.

Applications

Neutral infantry

You can create neutral infantry oppponents by not using an InfDeath=9 weapon (this includes using an animation that is not caused by a weapon such as crate pickups or a building anim). For example, setting rulesmd.ini[E1]DeathAnims=NEWANIM and artmd.ini[NEWANIM]MakeInfantry=0 would cause the GI to turn into a neutral Brute when the GI dies.

Player-owned infantry

You can create multiple weapons that result in a player-owned InfantryType being created as long as they all have InfDeath=9 set on their warheads. However the limitation is that they will all spawn the same InfantryType.
You could, of course, change the InfantryType that the Genetic Mutator spawns, or you could convert the Genetic Mutator into a non-mutation weapon if you wanted to.

Game modes

You can override the main rules in a game mode so that the InfantryTypes that are created by the MakeInfantry logic, the animations that cause the InfantryTypes to be spawned and the way those animations are played are different to other game modes - this will allow you to have different player-owned mutations in your mod, however you can still only have one player-owned mutation per game mode.

Actually, you can have two player-owned mutations

I lied above so that you could more easily understand the MakeInfantry logic first. In truth, by using InfDeath=8, you can spawn a second InfantryType that will be player-owned. However, in order to make use of InfDeath 8 for MakeInfantry purposes you will have to sacrifice the unique Virus InfDeath animation (or re-order the other InfDeath animations, but you will have to sacrifice one of them). There is also a limitation of InfDeath 8 in that the animation cannot remap the player colours correctly (see the description of the MakeInfantry flag at the top of this page).
But that really is it though, the other InfDeaths won't work for this.