ruff 102 Posted June 17, 2005 can someone pls explain what this means aiRateOfFireDistance=500; // "at shorter distance delay goes lineary to zero" Share this post Link to post Share on other sites
ProfTournesol 956 Posted June 17, 2005 aiRateOfFire=5.0; // delay between shots at given distance aiRateOfFireDistance=500; // at shorter distance delay goes lineary to zero Both lines are working together : if distance from Target is >500 meters, the rate of fire will be 5 seconds between two "shots". If unit's closer from the target, the rate of fire will increase "lineary", until continuous firing. Voila Share this post Link to post Share on other sites
[aps]gnat 28 Posted June 18, 2005 Cool ! Thx, always wondered myself Share this post Link to post Share on other sites
ruff 102 Posted June 18, 2005 thanks man so the closer the target gets the quicker the airateoffire Share this post Link to post Share on other sites