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

Making a straight-fire projectile

From ModEnc
Revision as of 09:17, 27 November 2009 by EvilRenegade (talk | contribs) (Replacing Template:TTL with Template:F.)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

This tutorial will tell you how to make straight-fire cannon systems for use on tanks or any other ground based weapon system.

Required Resources

Getting Started

First off in Rules(md).ini find the location of the [Cannon] projectile. It looks much like this:

; straight high-speed ballistic shot
[Cannon]
Image=120MM
Arcing=true
SubjectToCliffs=yes
SubjectToElevation=yes
SubjectToWalls=yes

Now comment out, delete, or switch Arcing=true to Arcing=false and add ROT=1, Proximity=yes, Ranged=yes,and Acceleration=50. Acceleration is the key part here to make this work as it will hamper the shell from behaving like a guided missle rather than direct-fire cannon. At Acceleration=40 or higher the effect is so severely diminished that it virtually does not appear. Consecutively there is no apparent increase in projectile speed. For fun or precaution's sake, feel free to increase the Acceleration value as high as you want it.

Once done the code should sorta look like this:

; straight high-speed ballistic shot
[Cannon]
Image=120MM
;Arcing=true ;comment this out/delete/change or all is lost.
ROT=1
Acceleration=50 ;this is most necessary. Can be higher if you want.
Proximity=yes
Ranged=yes
SubjectToCliffs=yes
SubjectToElevation=yes
SubjectToWalls=yes

Now then save your work, load up RA2 or YR and enjoy!

Words of caution

Due to the nature of the projectile many objects (mostly terrain) will stop the projectile at both certain angles and at certain distances as well. Also a weapon with this sort of projectile cannot shoot directly up cliffs.