-
Notifications
You must be signed in to change notification settings - Fork 739
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Advanced Ballistics - 'RHS: GREF' compatibility update (#5792)
- Loading branch information
Showing
3 changed files
with
106 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
|
||
class CfgWeapons { | ||
class rhs_weap_kar98k_Base_F; | ||
class rhs_weap_kar98k: rhs_weap_kar98k_Base_F { | ||
ACE_barrelTwist=240; | ||
ACE_barrelLength=600; | ||
}; | ||
class rhs_weap_m38_Base_F; | ||
class rhs_weap_m38: rhs_weap_m38_Base_F { | ||
ACE_barrelTwist=250; | ||
ACE_barrelLength=315; | ||
}; | ||
class rhs_weap_m38_rail; | ||
class rhs_weap_mosin_sbr: rhs_weap_m38_rail { | ||
ACE_barrelTwist=240; | ||
ACE_barrelLength=254; | ||
}; | ||
class rhs_weap_m70_base; | ||
class rhs_weap_m70ab2: rhs_weap_m70_base { | ||
ACE_barrelTwist=240; | ||
ACE_barrelLength=415; | ||
}; | ||
class rhs_weap_m92: rhs_weap_m70_base { | ||
ACE_barrelTwist=240; | ||
ACE_barrelLength=254; | ||
}; | ||
class rhs_weap_m76: rhs_weap_m70_base { | ||
ACE_barrelTwist=250; | ||
ACE_barrelLength=200; | ||
}; | ||
class rhs_weap_m21_base; | ||
class rhs_weap_m21: rhs_weap_m21_base { | ||
ACE_barrelTwist=177.8; | ||
ACE_barrelLength=460; | ||
}; | ||
class rhs_weap_m21a: rhs_weap_m21_base { | ||
ACE_barrelTwist=177.8; | ||
ACE_barrelLength=290; | ||
}; | ||
class rhs_weap_m21a_pr: rhs_weap_m21_base { | ||
ACE_barrelTwist=177.8; | ||
ACE_barrelLength=290; | ||
}; | ||
class rhs_weap_m21a_pr_pbg40: rhs_weap_m21_base { | ||
ACE_barrelTwist=177.8; | ||
ACE_barrelLength=290; | ||
}; | ||
class rhs_weap_m21s: rhs_weap_m21_base { | ||
ACE_barrelTwist=177.8; | ||
ACE_barrelLength=375; | ||
}; | ||
class rhs_weap_m21s_pr: rhs_weap_m21a_pr { | ||
ACE_barrelTwist=177.8; | ||
ACE_barrelLength=375; | ||
}; | ||
class Rifle_Base_F; | ||
class rhs_weap_savz58_base : Rifle_Base_F { | ||
ACE_barrelTwist=240; | ||
ACE_barrelLength=390; | ||
}; | ||
class rhs_weap_stgw57_base; | ||
class rhs_weap_stgw57: rhs_weap_stgw57_base { | ||
ACE_barrelTwist=270; | ||
ACE_barrelLength=583; | ||
}; | ||
class rhs_weap_g36_base; | ||
class rhs_weap_g36c: rhs_weap_g36_base { | ||
ACE_barrelTwist=177.8; | ||
ACE_barrelLength=228.6; | ||
}; | ||
class rhs_weap_g36kv: rhs_weap_g36_base { | ||
ACE_barrelTwist=177.8; | ||
ACE_barrelLength=317.5; | ||
}; | ||
class Rifle_Long_Base_F; | ||
class rhs_weap_m84: Rifle_Long_Base_F { | ||
ACE_barrelTwist=240; | ||
ACE_barrelLength=658; | ||
}; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,3 +14,4 @@ class CfgPatches { | |
}; | ||
|
||
#include "CfgAmmo.hpp" | ||
#include "CfgWeapons.hpp" |