mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
1.0 KiB
1.0 KiB
layout | title | description | group | order | parent |
---|---|---|---|---|---|
wiki | Overpressure Framework | Explains how to set-up launchers and cannon backblasts with ACE3 overpressure system. | framework | 5 | wiki |
1. Config Values
1.1 Launchers
class CfgWeapons {
class MyLauncher {
ACE_overpressure_angle = 60; // cone in which the damage is applied (in degrees from the back end of the launcher)
ACE_overpressure_range = 15; // range in meters in which the damage is applied
ACE_overpressure_damage = 0.7; // damage multiplier
};
};
1.2 Cannons
class CfgWeapons {
class MyBananaCannon {
ACE_overpressure_angle = 90; // cone in which the damage is applied (in degrees from the muzzle of the cannon)
ACE_overpressure_range = 50; // range in meters in which the damage is applied
ACE_overpressure_damage = 0.85; // damage multiplier
};
};
- You can note that the angle range and damage are higher, that's because this is a cannon and the backblast is higher.