mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
37068a5247
* Added compat_adr_97 and realisticnames p90 cyka blyat * typo * Added Balistics stuff for p90 compat * 2 spaces to 4 spaces * styled my shit * Name for Hex variants, firemodes for the civilian variant * Also changed the magzine names * fixed ubc warning * fixed my style once again * my stuff looks even better now ... * ...
15 lines
581 B
C++
15 lines
581 B
C++
class CfgAmmo {
|
|
class BulletBase;
|
|
class B_570x28_Ball: BulletBase {
|
|
ACE_caliber = 5.7;
|
|
ACE_bulletLength = 21.6; // http://blog.thejustnation.org/2011/04/5-7x28mm-ammo-review/
|
|
ACE_bulletMass = 2; // based on the SS190
|
|
ACE_ballisticCoefficients[] = {0.177}; //http://m.delphiforums.com/autogun/messages/5267/7
|
|
ACE_velocityBoundaries[] = {};
|
|
ACE_standardAtmosphere = "ASM"; // 50/50 chance to get it right
|
|
ACE_dragModel = 7;
|
|
ACE_muzzleVelocities[] = {716,776};
|
|
ACE_barrelLengths[] = {264,407};
|
|
};
|
|
};
|