Skip to content

Commit fef9bcc

Browse files
committed
Pre-release hotfixes
Removed RPK magazine Added preload config for new Pchela UAV Reverted engineer changes
1 parent 66a239f commit fef9bcc

File tree

5 files changed

+62
-36
lines changed

5 files changed

+62
-36
lines changed

Changelog.txt

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,38 +3,36 @@
33
Added:
44
some factions and subfactions lack medics and engineers (http://dev.withsix.com/issues/70799)
55
possibility to deactivate mines and hide corpses (missed) to saboteurs and some soldiers of special forces
6-
possibility to repair vehicles to soldiers of special forces
76
possibility to switch seat between all seats of UH60M helicopter
87

98
Changed:
109
reverted and updated CIT #28047 bug fix
1110
reverted CCP #71037 bug fix to original state
1211
deleted CCP #71142 bug fix due to it's faulty
13-
definitions of some optical sights to more realistic
1412
deleted unnecessary fire mode (@ 2600 SPM) of GSh302K cannon
15-
forbade to repair vehicles by Ins_Soldier_Sapper
16-
hit value of pistol and some cannon bullets
13+
hit value of pistol and some cannon projectiles
1714
inventory picture of OG7 launcher magazine
1815
rate of fire of some cannons
1916
reverted vision modes of Laserdesignator to original
17+
civilian and non-transport Urals no longer have huge ammo caches in them
18+
AI should no longer go prone indoors as much
2019

2120
Fixed:
2221
CfgWeapons - config references missing sound files (http://dev.withsix.com/issues/22990)
2322
PMC armored SUV's wheels are too strong (http://dev.withsix.com/issues/23501)
2423
CfgVehicles - irScanXXX issues (http://dev.withsix.com/issues/24913)
2524
unable to switch seats in Chinook (http://dev.withsix.com/issues/25026)
26-
accuracy value issues with civilian units (http://dev.withsix.com/issues/27790)
27-
accuracy value issues with military infantry units (http://dev.withsix.com/issues/27791)
28-
accuracy value issues with military special infantry units (http://dev.withsix.com/issues/27792)
29-
accuracy value issues with Wheeled_APC units (http://dev.withsix.com/issues/27793)
30-
accuracy value issues with tank units (http://dev.withsix.com/issues/27794)
25+
accuracy value issues for different units (CIT #27790, #27791, #27792, #27793, #27794)
3126
long magazine reload times on Tunguska (http://dev.withsix.com/issues/65710)
3227
HMMWV windshield is practically unbreakable (http://dev.withsix.com/issues/66995)
3328
7.62mm muzzle velocities are incorrect - too fast (http://dev.withsix.com/issues/71262)
3429
SCAR_L_STD_Mk4CQT descriptionShort error (http://dev.withsix.com/issues/72718)
30+
Aircraft crash destruction effects no longer starts mid-air on dedicated server
31+
Aircraft explosions now always appear at correct height
3532
broken IR laser of M4A1_RCO_GL rifle
36-
cost of some engineers
3733
incompatibility of FN_FAL and M14_EP1 rifles with JSRS mod
34+
RPK74 new magazine causing issues in ACE and CWR2
35+
cost of some engineers
3836
some localization mistakes
3937
some other issues
4038

CorePatch_CIT_22551/config.cpp

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,14 @@ class CfgPatches
99
};
1010
};
1111

12+
class CfgAddons {
13+
class PreloadAddons {
14+
class CorePatch_CIT_22551 {
15+
list[] = {"CorePatch_CIT_22551"};
16+
};
17+
};
18+
};
19+
1220
class CfgVehicles
1321
{
1422
class Plane;

CorePatch_CIT_70371/config.cpp

Lines changed: 24 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,18 @@ class CfgAddons
2121
class CfgMagazines
2222
{
2323
class CA_Magazine;
24+
class 75Rnd_545x39_RPK: CA_Magazine
25+
{
26+
count = 45;
27+
descriptionShort = "$STR_DSS_45RND_RPK_CP";
28+
displayName = "$STR_DN_45RND_545X39_RPK_CP";
29+
model = "\CorePatch\CorePatch_CIT_70371\models\30Rnd_545x39_AK";
30+
picture = "\CA\weapons\AK\data\equip\m_ak74_ca.paa";
31+
type = 256;
32+
};
33+
34+
35+
/* class CA_Magazine;
2436
class 45Rnd_545x39_RPK: CA_Magazine
2537
{
2638
ammo = "B_545x39_Ball";
@@ -43,11 +55,18 @@ class CfgMagazines
4355
model = "\CorePatch\CorePatch_CIT_70371\models\30Rnd_545x39_AK";
4456
picture = "\CA\weapons\AK\data\equip\m_ak74_ca.paa";
4557
type = 256;
46-
};
58+
};*/
4759
};
4860
class CfgWeapons
4961
{
50-
class Rifle;
62+
class AK_74;
63+
class RPK_74: AK_74
64+
{
65+
displayName = "$STR_DN_RPK_74_CP";
66+
model = "\CorePatch\CorePatch_CIT_70371\models\RPK_74";
67+
};
68+
69+
/* class Rifle;
5170
class AK_BASE: Rifle
5271
{
5372
magazines[] = {
@@ -68,11 +87,11 @@ class CfgWeapons
6887
"75Rnd_545x39_RPK"
6988
};
7089
model = "\CorePatch\CorePatch_CIT_70371\models\RPK_74";
71-
};
90+
};*/
7291
};
7392
class CfgVehicles
7493
{
75-
class CDF_Soldier_Base;
94+
/* class CDF_Soldier_Base;
7695
class CDF_Soldier_AR: CDF_Soldier_Base
7796
{
7897
magazines[] = {
@@ -423,5 +442,5 @@ class CfgVehicles
423442
magazine = "45Rnd_545x39_RPK";
424443
};
425444
};
426-
};
445+
};*/
427446
};

CorePatch_Characters/config.cpp

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -36,36 +36,36 @@ class CfgVehicles
3636
{
3737
class HitPoints;
3838
};
39-
class FR_Base: SoldierWB
39+
/* class FR_Base: SoldierWB
4040
{
4141
engineer = 1;
42-
};
43-
class GER_Soldier_base_EP1 : SoldierWB
42+
};*/
43+
/* class GER_Soldier_base_EP1 : SoldierWB
4444
{
4545
canDeactivateMines = 1;
4646
engineer = 1;
47-
};
47+
};*/
4848
class US_Soldier_Base_EP1 : SoldierWB
4949
{
5050
class HitPoints : HitPoints
5151
{
5252
class HitHead;
5353
};
5454
};
55-
class Drake : US_Soldier_Base_EP1
55+
/*class Drake : US_Soldier_Base_EP1
5656
{
5757
canDeactivateMines = 1;
5858
engineer = 1;
59-
};
59+
};*/
6060
class US_Delta_Force_EP1 : US_Soldier_Base_EP1
6161
{
6262
canDeactivateMines = 1;
63-
engineer = 1;
63+
//engineer = 1;
6464
};
6565
class US_Delta_Force_TL_EP1 : US_Soldier_Base_EP1
6666
{
6767
canDeactivateMines = 1;
68-
engineer = 1;
68+
//engineer = 1;
6969
};
7070
class US_Delta_Force_TL_Light_EP1 : US_Delta_Force_TL_EP1
7171
{
@@ -83,11 +83,11 @@ class CfgVehicles
8383
class US_Soldier_Crew_EP1 : US_Soldier_Base_EP1
8484
{
8585
};
86-
class Herrera : US_Soldier_Crew_EP1
86+
/*class Herrera : US_Soldier_Crew_EP1
8787
{
8888
canDeactivateMines = 1;
8989
engineer = 1;
90-
};
90+
};*/
9191
class US_Soldier_Crew_Light_EP1 : US_Soldier_Crew_EP1
9292
{
9393
model = "\ca\characters_E\US\US_crewman_Light";
@@ -127,13 +127,13 @@ class CfgVehicles
127127
{
128128
canDeactivateMines = 1;
129129
canHideBodies = 1;
130-
engineer = 1;
130+
//engineer = 1;
131131
};
132132
class RUS_Soldier_Base : SoldierEB
133133
{
134134
canDeactivateMines = 1;
135135
canHideBodies = 1;
136-
engineer = 1;
136+
//engineer = 1;
137137
};
138138
class BAF_Soldier_base_EP1;
139139
class BAF_Soldier_EN_MTP : BAF_Soldier_base_EP1
@@ -152,28 +152,28 @@ class CfgVehicles
152152
class CZ_Special_Forces_DES_EP1 : CZ_Soldier_base_EP1
153153
{
154154
canDeactivateMines = 1;
155-
engineer = 1;
155+
//engineer = 1;
156156
};
157157
class CZ_Special_Forces_GL_DES_EP1 : CZ_Soldier_base_EP1
158158
{
159159
canDeactivateMines = 1;
160160
displayName = "$STR_DN_GRENADIER";
161-
engineer = 1;
161+
//engineer = 1;
162162
};
163163
class CZ_Special_Forces_MG_DES_EP1 : CZ_Soldier_base_EP1
164164
{
165165
canDeactivateMines = 1;
166-
engineer = 1;
166+
//engineer = 1;
167167
};
168168
class CZ_Special_Forces_Scout_DES_EP1 : CZ_Soldier_base_EP1
169169
{
170170
canDeactivateMines = 1;
171-
engineer = 1;
171+
//engineer = 1;
172172
};
173173
class CZ_Special_Forces_TL_DES_EP1 : CZ_Soldier_base_EP1
174174
{
175175
canDeactivateMines = 1;
176-
engineer = 1;
176+
//engineer = 1;
177177
};
178178
class GUE_Soldier_Base;
179179
class GUE_Soldier_Sab : GUE_Soldier_Base
@@ -188,7 +188,7 @@ class CfgVehicles
188188
};
189189
class Ins_Soldier_Sapper : Ins_Soldier_Base
190190
{
191-
engineer = 0;
191+
//engineer = 0;
192192
};
193193
class RU_Soldier_Base;
194194
class RU_Soldier_AT : RU_Soldier_Base
@@ -215,7 +215,7 @@ class CfgVehicles
215215
{
216216
canDeactivateMines = 1;
217217
canHideBodies = 1;
218-
engineer = 1;
218+
//engineer = 1;
219219
};
220220
class TK_Soldier_base_EP1;
221221
class TK_Soldier_Engineer_EP1 : TK_Soldier_base_EP1
@@ -226,7 +226,7 @@ class CfgVehicles
226226
{
227227
canDeactivateMines = 1;
228228
canHideBodies = 1;
229-
engineer = 1;
229+
//engineer = 1;
230230
};
231231
class USMC_Soldier_Base;
232232
class USMC_SoldierS_Engineer : USMC_Soldier_Base
@@ -238,6 +238,6 @@ class CfgVehicles
238238
class Pierce : US_Soldier_Pilot_EP1
239239
{
240240
canDeactivateMines = 1;
241-
engineer = 1;
241+
//engineer = 1;
242242
};
243243
};

Credits.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ Xeno426 (Xenomorph) for his suggestions, improvements and bug fixing in the Comm
1111
Sa-Matra for his support and help on bug fixing
1212
Schatten for his support and help on bug fixing
1313
groove_c for his support and help on bug fixing
14+
PiZZADOX for his support and help on bug fixing
1415
All the contributors of the Community Configuration Project (http://dev.withsix.com/projects/arma-2-ccp)
1516
All the contributors of the Community Issue Tracker (http://dev.withsix.com/projects/cis)
1617
BI for making ArmA series

0 commit comments

Comments
 (0)