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

Disguise

From ModEnc
Revision as of 15:40, 12 August 2004 by DCoder (talk | contribs) (Added links)
Jump to: navigation, search

Making disguised units (by DCoder)

You noticed how the spy can disguise itself as an enemy infantry and walk right past the defenses (except dogs/yuri)? To achieve that, you'll need only a couple of tags and a special weapon. Firstly, add CanDisguise=yes and PermaDisguise=yes to the soldier's code. Then, add this to the weapon: Warhead=Snapshot . The warhead [Snapshot] is already present in the game, but if you are using a different one, you'll have to add MakesDisguise=yes to the warhead's code too. Now how do you make other units detect disguised units? Easy, by adding DetectDisguise=yes to their code. That's all about infantry disguises.

Now for vehicle disguises, a.k.a. Mirage Tank. This kind of disguise requires CanDisguise=yes, but not PermaDisguise=yes. Also, the vehicle that uses it should not have a turret as the disguising logic can't turn two voxels into a single shp, so it'll end up with two trees - one for body, drawn at ground level, and one for turret, drawn on top of the first one. If you want to let vehicles pick their own disguises, you once again need a warhead with MakesDisguise=yes, but since the Mirage Tank uses terrain objects instead of infantry as disguise, you also need to add TerrainFire=yes to the weapon, which makes the vehicle able to target trees and other terrain objects.

AlliedDisguise=, SovietDisguise=, and ThirdDisguise= tags define which infantry the units with PermaDisguise=yes look as when the owner hasn't disguised them yet, for each side respectively.

DefaultMirageTankDisguises= defines a list of terrain objects that a CanDisguise=yes unit without PermaDisguise=yes will try to look like when it doesn't have a custom disguise.

So if you give a vehicle PermaDisguise=yes, it will look stupid - it will use the Allied/Soviet/ThirdDisguise instead of DefaultMirageTankDisguises, end up looking like an infantry, and because SHP vehicles (SHP is the only way infantry can look like) use a different method to reference proper art frames, you'll see a GI with his gun spinning around as the tank moves (the game then sets WalkFrames=1 and uses the first frames of the infantry SHP as it's walking animation). I think that by giving the infantry art sections the proper vehicle-style frame reference tags, you can make it look properly, but this still requires some testing.