-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
93 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
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,24 @@ | ||
// MP5K | ||
class SMG_05_F: SMG_05_base_F { | ||
recoil = QCLASS(SMG_Base); | ||
}; | ||
|
||
// CPW | ||
class hgun_PDW2000_F: pdw2000_base_F { | ||
recoil = QCLASS(SMG_Base); | ||
}; | ||
|
||
// P90 | ||
class SMG_03_TR_BASE: Rifle_Base_F { | ||
recoil = QCLASS(SMG_Base); | ||
}; | ||
|
||
// Scorpion Evo | ||
class SMG_02_F: SMG_02_base_F { | ||
recoil = QCLASS(SMG_Base); | ||
}; | ||
|
||
// Vector | ||
class SMG_01_F: SMG_01_Base { | ||
recoil = QCLASS(SMG_Base); | ||
}; |
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
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,48 @@ | ||
// MP5 Series | ||
class CUP_smg_MP5SD6: Rifle_Base_F { | ||
recoil = QCLASS(SMG_Base); | ||
}; | ||
class CUP_smg_MP5A5: CUP_smg_MP5SD6 {}; | ||
class CUP_smg_MP5A5_Rail: CUP_smg_MP5A5 {}; | ||
class CUP_smg_MP5A5_Rail_VFG: CUP_smg_MP5A5_Rail { | ||
recoil = QCLASS(SMG_Foregrip); | ||
}; | ||
class CUP_smg_MP5A5_Rail_AFG: CUP_smg_MP5A5_Rail { | ||
recoil = QCLASS(SMG_Foregrip); | ||
}; | ||
|
||
// MP7 | ||
class CUP_smg_MP7: Rifle_Short_Base_F { | ||
recoil = QCLASS(SMG_Foregrip); | ||
}; | ||
|
||
// Bizon | ||
class CUP_smg_bizon: Rifle_Base_F { | ||
recoil = QCLASS(SMG_Base); | ||
}; | ||
|
||
// PP-19 Vityaz | ||
class CUP_smg_vityaz: CUP_smg_bizon {}; | ||
class CUP_smg_vityaz_vfg: CUP_smg_vityaz { | ||
recoil = QCLASS(SMG_Foregrip); | ||
}; | ||
class CUP_smg_vityaz_top_rail: CUP_smg_vityaz {}; | ||
class CUP_smg_vityaz_vfg_top_rail: CUP_smg_vityaz_top_rail { | ||
recoil = QCLASS(SMG_Foregrip); | ||
}; | ||
class CUP_smg_vityaz_vfg_front_rail: CUP_smg_vityaz_top_rail { | ||
recoil = QCLASS(SMG_Foregrip); | ||
}; | ||
|
||
// SR-3M Vikhr | ||
class CUP_arifle_SR3M_Vikhr: Rifle_Base_F { | ||
recoil = QCLASS(SMG_Base); | ||
}; | ||
|
||
class CUP_arifle_SR3M_Vikhr_VFG: CUP_arifle_SR3M_Vikhr { | ||
recoil = QCLASS(SMG_Foregrip); | ||
}; | ||
class CUP_arifle_SR3M_Vikhr_top_rail: CUP_arifle_SR3M_Vikhr {}; | ||
class CUP_arifle_SR3M_Vikhr_VFG_top_rail: CUP_arifle_SR3M_Vikhr_top_rail { | ||
recoil = QCLASS(SMG_Foregrip); | ||
}; |