mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
Fix UBC errors for RHS 4.1 (#3800)
This commit is contained in:
parent
e1403d567c
commit
709916c0f3
@ -39,7 +39,7 @@ class CfgAmmo {
|
|||||||
ACE_muzzleVelocities[]={700, 800, 820, 833};
|
ACE_muzzleVelocities[]={700, 800, 820, 833};
|
||||||
ACE_barrelLengths[]={406.4, 508.0, 609.6, 660.4};
|
ACE_barrelLengths[]={406.4, 508.0, 609.6, 660.4};
|
||||||
};
|
};
|
||||||
class rhs_B_762x54_Ball_Tracer_Green: B_762x51_Ball {
|
class rhs_B_762x54_Ball_Tracer_Green: rhs_B_762x54_Ball {
|
||||||
ACE_caliber=7.925;
|
ACE_caliber=7.925;
|
||||||
ACE_bulletLength=28.956;
|
ACE_bulletLength=28.956;
|
||||||
ACE_bulletMass=9.6552;
|
ACE_bulletMass=9.6552;
|
||||||
|
@ -243,8 +243,8 @@ class CfgVehicles {
|
|||||||
EGVAR(fastroping,onPrepare) = QFUNC(onPrepare);
|
EGVAR(fastroping,onPrepare) = QFUNC(onPrepare);
|
||||||
|
|
||||||
class UserActions {
|
class UserActions {
|
||||||
class openDoor;
|
class openDoor_L;
|
||||||
class closeDoor_L: openDoor {
|
class closeDoor_L: openDoor_L {
|
||||||
condition = QUOTE((this doorPhase 'LeftDoor' > 0.5) && {alive this} && {!(this getVariable [ARR_2(QUOTE(QEGVAR(fastroping,doorsLocked)),false)])});
|
condition = QUOTE((this doorPhase 'LeftDoor' > 0.5) && {alive this} && {!(this getVariable [ARR_2(QUOTE(QEGVAR(fastroping,doorsLocked)),false)])});
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
@ -2,7 +2,8 @@
|
|||||||
class CfgAmmo
|
class CfgAmmo
|
||||||
{
|
{
|
||||||
class BulletBase;
|
class BulletBase;
|
||||||
class rhsusf_B_300winmag: BulletBase {
|
class B_762x54_Ball;
|
||||||
|
class rhsusf_B_300winmag: B_762x54_Ball {
|
||||||
ACE_caliber=7.823;
|
ACE_caliber=7.823;
|
||||||
ACE_bulletLength=37.821;
|
ACE_bulletLength=37.821;
|
||||||
ACE_bulletMass=14.256;
|
ACE_bulletMass=14.256;
|
||||||
|
@ -111,8 +111,8 @@ class CfgWeapons
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
class rhs_weap_m4a1;
|
class rhs_weap_m4a1_blockII;
|
||||||
class rhs_weap_mk18: rhs_weap_m4a1 {
|
class rhs_weap_mk18: rhs_weap_m4a1_blockII {
|
||||||
ACE_barrelTwist = 177.8;
|
ACE_barrelTwist = 177.8;
|
||||||
ACE_barrelLength = 261.62;
|
ACE_barrelLength = 261.62;
|
||||||
ACE_Overheating_dispersion = 1;
|
ACE_Overheating_dispersion = 1;
|
||||||
|
Loading…
Reference in New Issue
Block a user