Browse Source

Weapons final + resupplies

Erliens 4 years ago
parent
commit
a0ce4d9c97
24 changed files with 275 additions and 146 deletions
  1. 1 1
      addons - Copy/RD501_Main/XEH_postinit.sqf
  2. 59 0
      addons - Copy/RD501_Vehicles/common/smallvehiclekit.hpp
  3. 7 15
      addons - Copy/RD501_Vehicles/land/Mynock/config.cpp
  4. 1 8
      addons - Copy/RD501_Vehicles/land/Warden/config.cpp
  5. 2 2
      addons - Copy/RD501_Vehicles/land/fast_infantry_transport/config.cpp
  6. 1 9
      addons - Copy/RD501_Vehicles/land/heavy_ordinance_tank/config.cpp
  7. 59 54
      addons - Copy/RD501_Vehicles/land/resupply_box/ammo_small_mag.hpp
  8. 62 2
      addons - Copy/RD501_Vehicles/land/resupply_box/ammo_small_weap.hpp
  9. 0 2
      addons - Copy/RD501_Vehicles/land/resupply_box/config.cpp
  10. 1 10
      addons - Copy/RD501_Vehicles/land/rocket_ordinance_tank/config.cpp
  11. 6 6
      addons - Copy/RD501_Weapons/DC_Family/DC_15a/config.cpp
  12. 9 3
      addons - Copy/RD501_Weapons/DC_Family/DC_15gl/config.cpp
  13. 2 2
      addons - Copy/RD501_Weapons/DC_Family/DC_15s/config.cpp
  14. 2 2
      addons - Copy/RD501_Weapons/DC_Family/DC_15x/config.cpp
  15. 4 4
      addons - Copy/RD501_Weapons/DC_Family/DC_17/config.cpp
  16. 2 2
      addons - Copy/RD501_Weapons/DC_Family/DC_19/config.cpp
  17. 5 7
      addons - Copy/RD501_Weapons/Launchers/RPS1/config.cpp
  18. 6 5
      addons - Copy/RD501_Weapons/Launchers/RPS6/config.cpp
  19. 21 2
      addons - Copy/RD501_Weapons/RAMER/config.cpp
  20. 2 1
      addons - Copy/RD501_Weapons/Westar/config.cpp
  21. 2 2
      addons - Copy/RD501_Weapons/Z6/config.cpp
  22. 12 4
      addons - Copy/RD501_Weapons/_mag/config.cpp
  23. 1 1
      addons - Copy/RD501_Weapons/_scopes/DC_15A_2-6x_acog.hpp
  24. 8 2
      addons - Copy/RD501_Weapons/rocket/config.cpp

+ 1 - 1
addons - Copy/RD501_Main/XEH_postinit.sqf

@@ -21,5 +21,5 @@ RD501_FORCE_WALK_WEAPONS = [macro_quote(macro_new_weapon_nofam(z1000))];
 ["weapon", macro_fnc_name(heavyWeaponHandlePlayerWeaponChanged)] call CBA_fnc_addPlayerEventHandler;
 
 //Auto Reload On Equip
-RD501_AUTO_RELOAD_ON_EQUIP = [QWEAP_NOFAM(z1000),QWEAP_LAUNCH(RPS_Disposable)];
+RD501_AUTO_RELOAD_ON_EQUIP = [QWEAP_NOFAM(z1000),QWEAP_LAUNCH(rps1)];
 ["weapon", macro_fnc_name(reloadWeaponOnFirstSelected)] call CBA_fnc_addPlayerEventHandler;

+ 59 - 0
addons - Copy/RD501_Vehicles/common/smallvehiclekit.hpp

@@ -0,0 +1,59 @@
+class TransportItems
+	{
+		class _transport_ToolKit
+		{
+			name = "ToolKit";
+			count = 2;
+		};
+		class _transport_ACE_morphine
+		{
+			name = "ACE_morphine";
+			count = 10;
+		};	
+		class _transport_ACE_epinephrine
+		{
+			name = "ACE_epinephrine";
+			count = 10;
+		};	
+		class _transport_ACE_tourniquet
+		{
+			name = "ACE_tourniquet";
+			count = 6;
+		};	
+		class _transport_ACE_elasticBandage
+		{
+			name = "ACE_elasticBandage";
+			count = 40;
+		};				
+	};
+class TransportWeapons
+	{
+	class _transport_dc15a
+		{
+			weapon = macro_new_weapon(DC,r15a)
+			count = 3;
+		};
+	class _transport_dc15c
+		{
+			weapon = macro_new_weapon(DC,15c)
+			count = 3;
+		};
+	class _transport_rps1
+		{
+			weapon = macro_new_weapon(launcher,rps1)
+			count = 2;
+		};
+	};
+class TransportMagazines
+	{
+	class transport_10mw30
+		{
+			magazine = macro_new_mag(10mw,30);
+			count = 20;
+		};
+	class _transport_20mwdp20
+		{
+			magazine = macro_new_mag(20mwdp,20);
+			count = 40;
+		};
+	};

+ 7 - 15
addons - Copy/RD501_Vehicles/land/Mynock/config.cpp

@@ -71,9 +71,7 @@ class CfgVehicles
 		editorSubcategory = macro_editor_cat(Tank)
 		vehicleClass = macro_editor_vehicle_type(Tank)
 		class TransportBackpacks;
-		class TransportItems;
-		class TransportWeapons;
-		class TransportMagazines;
+		#include "../../common/smallvehiclekit.hpp"
 
 		#include "common_stuff_mynock.hpp"
 
@@ -119,9 +117,7 @@ class CfgVehicles
 		editorSubcategory = macro_editor_cat(Tank)
 		vehicleClass = macro_editor_vehicle_type(Tank)
 		class TransportBackpacks;
-		class TransportItems;
-		class TransportWeapons;
-		class TransportMagazines;
+		#include "../../common/smallvehiclekit.hpp"
 
 		#include "common_stuff_mynock.hpp"
 
@@ -166,9 +162,7 @@ class CfgVehicles
 		editorSubcategory = macro_editor_cat(Tank)
 		vehicleClass = macro_editor_vehicle_type(Tank)
 		class TransportBackpacks;
-		class TransportItems;
-		class TransportWeapons;
-		class TransportMagazines;
+		#include "../../common/smallvehiclekit.hpp"
 
 		#include "common_stuff_mynock.hpp"
 
@@ -217,9 +211,7 @@ class CfgVehicles
 		editorSubcategory = macro_editor_cat(APC)
 		vehicleClass = macro_editor_vehicle_type(APC)
 		class TransportBackpacks;
-		class TransportItems;
-		class TransportWeapons;
-		class TransportMagazines;
+		#include "../../common/smallvehiclekit.hpp"
 		class EventHandlers: DefaultEventhandlers
 		{
 			fired = "_this call (uinamespace getviariable 'BIS_fnc_effectFired');";
@@ -246,6 +238,7 @@ class CfgVehicles
 	{
 		displayName="Republic Glaive TD"
 		author="RD501"
+		#include "../../common/smallvehiclekit.hpp"
 		hiddenSelectionsTextures[]=
 		{
 			"RD501_Vehicles\textures\glaive\glaive_ext1_republic_co.paa",
@@ -282,9 +275,7 @@ class CfgVehicles
 		editorSubcategory = macro_editor_cat(AA)
 		vehicleClass = macro_editor_vehicle_type(AA)
 		class TransportBackpacks;
-		class TransportItems;
-		class TransportWeapons;
-		class TransportMagazines;
+		#include "../../common/smallvehiclekit.hpp"
 
 		#include "common_stuff_mynock.hpp"
 
@@ -325,5 +316,6 @@ class CfgVehicles
 		faction = macro_republic_faction
 		editorSubcategory = macro_editor_cat(Transport)
 		vehicleClass = macro_editor_vehicle_type(Transport)
+		#include "../../common/smallvehiclekit.hpp"
 	};	
 };

+ 1 - 8
addons - Copy/RD501_Vehicles/land/Warden/config.cpp

@@ -86,15 +86,8 @@ class CfgVehicles
 		vehicleClass = macro_editor_vehicle_type(APC)
 
 		#include "../Mynock/common_stuff_mynock.hpp"
+		#include "../../common/smallvehiclekit.hpp"
 		
-		class TransportItems
-		{
-			class _xx_ToolKit
-			{
-				name = "ToolKit";
-				count = 4;
-			};
-		};
 		author = "RD501";
 		//faction = "RD501Faction";
 		scope = 2;

+ 2 - 2
addons - Copy/RD501_Vehicles/land/fast_infantry_transport/config.cpp

@@ -49,7 +49,7 @@ class CfgVehicles
 		displayName = "Republic Pathfinder";
 		forceInGarage = 1;
 		side = 1;
-		
+		#include "../../common/smallvehiclekit.hpp"
 
 		faction = macro_republic_faction
 		editorSubcategory = macro_editor_cat(Transport)
@@ -99,7 +99,7 @@ class CfgVehicles
 			macro_vehicle_textures\Fast_Infantry_Transport\wheels_medical_fit.paa,
 			""
 		};
-
+		
 		smokeLauncherAngle = 360;
 		smokeLauncherGrenadeCount = 20;
 		smokeLauncherVelocity = 16;

+ 1 - 9
addons - Copy/RD501_Vehicles/land/heavy_ordinance_tank/config.cpp

@@ -62,15 +62,7 @@ class CfgVehicles
 
 		forceInGarage=1;
 		author = "RD501";
-		class TransportItems
-		{
-		};
-		class TransportMagazines
-		{
-		};
-		class TransportWeapons 
-		{
-		};
+		#include "../../common/smallvehiclekit.hpp"
 
 		#include "../Mynock/common_stuff_mynock.hpp"
 		class EventHandlers: DefaultEventhandlers

+ 59 - 54
addons - Copy/RD501_Vehicles/land/resupply_box/ammo_small_mag.hpp

@@ -1,95 +1,100 @@
-class DC15_A_Rifle_full_mag
+class transport_2mw30
 {
-	magazine = macro_new_mag(DC15a_High,15);
+	magazine = macro_new_mag(2mw,30);
 	count = 15;
 };
-class _xx_SWOP_DC15ABlasterRifle_Mag
+class transport_5mw15
 {
-	magazine = macro_new_mag(DC15a_Med,30);
+	magazine = macro_new_mag(5mw,10);
 	count = 15;
 };
-class _xx_SWOP_DC15ABlasterRifle_Low_Mag
+class transport_5mw60
 {
-	magazine = 	macro_new_mag(DC15a_Low,60)
-	count = 15;
+	magazine = 	macro_new_mag(5mw,60)
+	count = 60;
 };
-class _xx_DCStun_Mag
+class transport_10mw30
 {
-	magazine = "DCStun_Mag";
-	count = 10;
+	magazine = macro_new_mag(10mw,30);
+	count = 60;
 };
-class _xx_SWOP_DC15_Mag_Mag
+class transport_10mw400
 {
-	magazine = macro_new_mag(DC15s,60);
+	magazine = macro_new_mag(10mw,400);
 	count = 15;
 };
-class _xx_SWOP_SWOP_dc15xBlasterRifle_RD501_Mag_Mag
+class _transport_20mw20
 {
-	magazine = macro_new_mag(DC15x,6);
-	count = 15;
+	magazine = macro_new_mag(20mw,20);
+	count = 20;
 };
-class _xx_SWOP_SWOP_DC15ABlasterRifle_Low_highcap_box_Mag
+class _transport_20mwup20
 {
-	magazine =  macro_new_mag(DC15a_box_mag,240);
-	count = 10;
+	magazine =  macro_new_mag(20mwup,20);
+	count = 40;
 };		
-class _xx_SWOP_1Rnd_AT_Grenade_DC15A_Mag
+class _transport_20mwdp20
 {
-	magazine = macro_new_mag(AT_GL,2);
-	count = 10;
+	magazine = macro_new_mag(20mwdp,20);
+	count = 40;
 };		
-class _xx_SWOP_SWOP_WESTARM5_MAG
+class _transport_20mw240
 {
-	magazine = "SWOP_WESTARM5_Mag";
-	count = 10;
+	magazine = macro_new_mag(20mw,240);
+	count = 20;
 };									
-class _xx_SWOP_SWOP_DC17Pistol_Mag_Mag
+class _transport_30mw10
 {
-	magazine = macro_new_mag(DC17,20)
+	magazine = macro_new_mag(30mw,10);
 	count = 15;
-};					
-class _xx_ACE_HuntIR_M203
+}
+class _transport_30mw7
 {
-	magazine = "ACE_HuntIR_M203";
-	count = 25;
+	magazine = macro_new_mag(30mw,7)
+	count = 15;
 };
-class _xx_5Rnd_HE_Grenade_DC15A
+class _transport_40mw5
 {
-	magazine = macro_new_mag(HE_GL,3)
+	magazine = macro_new_mag(40mw,5)
 	count = 10;
 };
-class _xx_300Rnd_BlasterLaser_Belt
+class _transport_stun5
 {
-	magazine = macro_new_mag(z6,400)
-	count = 10;
+	magazine =  macro_new_mag(stun,5)
+	count = 20;
 };
-class _xx_RD501_DC15ABlasterRifleLE_Full_Mag
+class _transport_launcher_AT_mags
 {
-	magazine =  macro_new_mag(DC15a_LE,15)
-	count = 10;
+	magazine =  macro_new_mag(RPS_AT,1)
+	count = 20;
 };
-class _xx_C12_Remote_Mag
+class _transport_launcher_AA_mags
 {
-	magazine = "C12_Remote_Mag";
-	count = 2;
+	magazine =  macro_new_mag(RPS_AA,1)
+	count = 20;
 };
-class _xx_RocketHH15CloneHEATFF_Mag_RD501
+class _transport_he3
 {
-	magazine =  macro_new_mag(RPS_AT,1)
-	count = 10;
+	magazine = macro_new_mag(UGL_HE,3);
+	count = 15;
 };
-class _xx_Rocket_AA_mags
+class _transport_ap2
 {
-	magazine =  macro_new_mag(RPS_AA,1)
-	count = 10;
-};
-class _xx_UGL_FlareWhite_F_3Rnd_RD501
+	magazine = macro_new_mag(UGL_AP,2);
+	count = 15;
+};		
+class _transport_emp1
+{
+	magazine = macro_new_mag(UGL_EMP,1);
+	count = 3;
+};			
+class _transport_HuntIR_M203
 {
-	magazine = "UGL_FlareWhite_F_3Rnd_RD501";
-	count = 5;
+	magazine = "ACE_HuntIR_M203";
+	count = 15;
 };
-class _xx_UGL_3Rnd_Smoke_Grenade_shell
+class _transport_C12_Remote_Mag
 {
-	magazine = "3Rnd_Smoke_Grenade_shell";
-	count = 5;
+	magazine = "C12_Remote_Mag";
+	count = 2;
 };

+ 62 - 2
addons - Copy/RD501_Vehicles/land/resupply_box/ammo_small_weap.hpp

@@ -1,5 +1,65 @@
-class _xx_SWOP_SWOP_DC15ABlasterRifle_RD501_RD501
+class _transport_dc15a
 {
-    weapon = macro_new_weapon(DC,15a)
+    weapon = macro_new_weapon(DC,r15a)
     count = 5;
+};
+class _transport_dc15s
+{
+    weapon = macro_new_weapon(DC,r15s)
+    count = 5;
+};
+class _transport_dc15c
+{
+    weapon = macro_new_weapon(DC,15c)
+    count = 5;
+};
+class _transport_dc15l
+{
+    weapon = macro_new_weapon(DC,15l)
+    count = 2;
+};
+class _transport_z6
+{
+    weapon = macro_new_weapon_nofam(rz6)
+    count = 2;
+};
+class _transport_dc15gl
+{
+    weapon = macro_new_weapon(DC,15gl)
+    count = 2;
+};
+class _transport_valken38x
+{
+    weapon = macro_new_weapon_nofam(valken38x)
+    count = 2;
+};
+class _transport_rps6
+{
+    weapon = macro_new_weapon(launcher,rps6)
+    count = 2;
+};
+class _transport_rps1
+{
+    weapon = macro_new_weapon(launcher,rps1)
+    count = 2;
+};
+class _transport_plx
+{
+    weapon = macro_new_weapon(Launcher,PLX1)
+    count = 1;
+};
+class _transport_z1000
+{
+    weapon = macro_new_weapon_nofam(z1000)
+    count = 1;
+};
+class _transport_dc15x
+{
+    weapon = macro_new_weapon(DC,r15x)
+    count = 1;
+};
+class _transport_rgl6
+{
+    weapon = macro_new_weapon_nofam(rgl6)
+    count = 1;
 };

+ 0 - 2
addons - Copy/RD501_Vehicles/land/resupply_box/config.cpp

@@ -180,8 +180,6 @@ class CfgVehicles
 		ace_cargo_size = 1;
 		class TransportItems
         {
-        	#include "ammo_small_items.hpp"
-			#include "medical_small_items.hpp"
         };
 			
 		class TransportMagazines

+ 1 - 10
addons - Copy/RD501_Vehicles/land/rocket_ordinance_tank/config.cpp

@@ -60,16 +60,7 @@ class CfgVehicles
 		forceInGarage=1;
 
 		#include "../Mynock/common_stuff_mynock.hpp"
-
-		class TransportItems
-		{
-		};
-		class TransportMagazines
-		{
-		};
-		class TransportWeapons 
-		{
-		};
+		#include "../../common/smallvehiclekit.hpp"
 		
 		textureList[] = {};
 		hiddenSelectionsTextures[] = 

+ 6 - 6
addons - Copy/RD501_Weapons/DC_Family/DC_15a/config.cpp

@@ -29,7 +29,7 @@ class CfgPatches
 
 class cfgWeapons 
 {
-	class Rifle_Long_Base_F;
+	/*class Rifle_Long_Base_F;
 	class SWOP_BlasterRifle_Base:Rifle_Long_Base_F
 	{
 		class WeaponSlotsInfo;
@@ -100,7 +100,7 @@ class cfgWeapons
 		{
 			class CowsSlot;
 		};
-	}
+	}*/
 	class 3AS_DC15A_Base_F;
 	class RD501_stun_muzzle;
 	class 3AS_DC15A_F:3AS_DC15A_Base_F
@@ -154,9 +154,9 @@ class cfgWeapons
 			};
 		};
 	};
-	#include "DC_15a__LE_rifle.hpp"
-	#include "DC_15a__GL_rifle.hpp"
-	#include "DC_15a__mod0_rifle.hpp"
-	#include "DC_15a_rifle.hpp"
+	//#include "DC_15a__LE_rifle.hpp"
+	//#include "DC_15a__GL_rifle.hpp"
+	//#include "DC_15a__mod0_rifle.hpp"
+	//#include "DC_15a_rifle.hpp"
 };
 

+ 9 - 3
addons - Copy/RD501_Weapons/DC_Family/DC_15gl/config.cpp

@@ -1,4 +1,4 @@
-#define COMPONENT DC_15s
+#define COMPONENT DC_15gl
 #include "../../../RD501_main/config_macros.hpp"
 #include "../../_common/common.hpp"
 
@@ -73,10 +73,16 @@ class CfgWeapons
 			mass = 30;
 			class CowsSlot: CowsSlot
 			{
-				access = 1;
+				displayName = "Optics Slot";
+				iconPicture = "\A3\Weapons_F\Data\UI\attachment_top.paa";
+				iconPinpoint = "Bottom";
+				iconPosition[] = {0.5,0.35};
+				iconScale = 0.2;
+				linkProxy = "\A3\data_f\proxies\weapon_slots\TOP";
+				scope = 0;
 				compatibleItems[] = 
 				{
-					macro_new_weapon(scope,dc_15a_acogtcw)
+					macro_new_weapon(scope,dc_15a_acog)
 				};
 
 			};

+ 2 - 2
addons - Copy/RD501_Weapons/DC_Family/DC_15s/config.cpp

@@ -25,7 +25,7 @@ class CfgPatches
 
 class cfgWeapons 
 {
-	class SWOP_B2gun;
+	/*class SWOP_B2gun;
 	class Rifle_Long_Base_F;
 	class SWOP_BlasterRifle_Base:Rifle_Long_Base_F
 	{
@@ -96,7 +96,7 @@ class cfgWeapons
 
 			};
 		};
-	};
+	};*/
 
 	class Pistol;
 	class Pistol_Base_F:Pistol

+ 2 - 2
addons - Copy/RD501_Weapons/DC_Family/DC_15x/config.cpp

@@ -27,7 +27,7 @@ class CfgPatches
 class cfgWeapons 
 {
 	
-	class SWOP_BlasterRifle_Base;
+	/*class SWOP_BlasterRifle_Base;
 
 	class SWOP_dc15xBlasterRifle: SWOP_BlasterRifle_Base
 	{
@@ -96,7 +96,7 @@ class cfgWeapons
 			};
 		};
 
-	};
+	};*/
 	class arifle_MX_Base_F;
 	class JLTS_DC15X: arifle_MX_Base_F
 	{

+ 4 - 4
addons - Copy/RD501_Weapons/DC_Family/DC_17/config.cpp

@@ -28,7 +28,7 @@ class CfgPatches
 
 class cfgWeapons 
 {
-	class Mode_FullAuto;
+	/*class Mode_FullAuto;
 	class Pistol_Base_F;
 	class SWOP_DC17Pistol: Pistol_Base_F
 	{
@@ -101,7 +101,7 @@ class cfgWeapons
 	class SWOP_DC15SAPistol:Pistol_Base_F
 	{
 		class Single;
-	};
+	};*/
 	class RD501_stun_muzzle;
 	class hgun_P07_F;
 	class JLTS_DC17SA:hgun_P07_F
@@ -176,7 +176,7 @@ class cfgWeapons
 			burst=3;
 		};
 	};
-
+/*
 	class RD501_DC_15_RB:SWOP_DC15SAPistol
 	{
 		scope=2;
@@ -280,7 +280,7 @@ class cfgWeapons
 
 			dispersion = 0.0001;
 		};
-	};
+	};*/
 
 	
 };

+ 2 - 2
addons - Copy/RD501_Weapons/DC_Family/DC_19/config.cpp

@@ -24,7 +24,7 @@ class CfgPatches
 
 class cfgWeapons 
 {
-	class SWOP_BlasterRifle_Base;
+	/*class SWOP_BlasterRifle_Base;
 	class SWOP_DC19: SWOP_BlasterRifle_Base
 	{
 		
@@ -58,6 +58,6 @@ class cfgWeapons
 			reloadTime = DC19_reloadtime_single
         	dispersion = DC19_accuracy
 		};
-	};
+	};*/
 };
 

+ 5 - 7
addons - Copy/RD501_Weapons/Launchers/RPS1/config.cpp

@@ -23,29 +23,27 @@ class CfgPatches
 
 class cfgWeapons 
 {
-	class Launcher;
-    class Launcher_Base_F: Launcher {
+	class Launcher_Base_F;
+    class launch_RPG32_F: Launcher_Base_F {
         class WeaponSlotsInfo;
     };
 
-	class macro_new_weapon(launcher,rps1) : Launcher_Base_F
+	class macro_new_weapon(launcher,rps1) : launch_RPG32_F
 	{
 		author= "RD501";
 		scope = 2;
 		scopeArsenal=2;
 		displayName = "Republic RPS1 Launcher";
 		model = "\3AS\3AS_Weapons\RPS6\3AS_RPS6_F.p3d";
-		modelOptics="\a3\Weapons_F_Tank\acc\reticle_MRAWSNew.p3d";
         icon = "\RD501_Weapons\Launchers\RPS1\rps_disposable_icon.paa";
 		picture = "\RD501_Weapons\Launchers\RPS1\rps_disposable_icon.paa";
 		recoil = "recoil_single_law";
 		baseWeapon = macro_new_weapon(launcher,rps1)
 		RD501_Empty_Weapon = macro_new_weapon(launcher,rps1_u)
-		magazines[] = { "MRAWS_HEAT55_F" };
-
+		magazines[] = { macro_new_mag(rps1,1) };
+		magazineWell[]={""};
 		magazineReloadTime = 0.1;
         reloadMagazineSound[] = {"",1,1};
-        
 		class EventHandlers {
 			fired = macro_quote(_this call macro_fnc_name(onWeaponFiredSwapToEmpty));
 		};

+ 6 - 5
addons - Copy/RD501_Weapons/Launchers/RPS6/config.cpp

@@ -34,10 +34,11 @@ class CfgWeapons
 		modelOptics="\A3\Weapons_F_Beta\acc\reticle_titan.p3d";
 		icon = "\RD501_Weapons\Launchers\RPS6\icon.paa";
 		picture = "\RD501_Weapons\Launchers\RPS6\icon.paa";
+		nameSound="aalauncher";
 		magazines[]=
 		{
 			macro_new_mag(RPS_AT,1),
-			macro_new_mag(RPS_AT,1)
+			macro_new_mag(RPS_AA,1)
 			
 		};
 		class OpticsModes
@@ -52,9 +53,9 @@ class CfgWeapons
 					"OpticsBlur1"
 				};
 				opticsFlare=0;
-				opticsZoomMin=0.083329998;
-				opticsZoomMax=0.041669998;
-				opticsZoomInit=0.083329998;
+				opticsZoomInit =scope_magnification(1); //0.1083;
+				opticsZoomMax = scope_magnification(1); //0.1083;
+				opticsZoomMin = scope_magnification(6); //0.1083;
 				distanceZoomMin=300;
 				distanceZoomMax=300;
 				memoryPointCamera="eye";
@@ -67,7 +68,7 @@ class CfgWeapons
 				};
 				thermalMode[]={0};
 				opticsDisablePeripherialVision=1;
-				discretefov[]={0.083329998,0.041669998};
+				discretefov[] = {scope_magnification(1),scope_magnification(3),scope_magnification(6)};
 				discreteInitIndex=0;
 			};
 		};

+ 21 - 2
addons - Copy/RD501_Weapons/RAMER/config.cpp

@@ -21,7 +21,7 @@ class CfgPatches
 };
 class cfgWeapons
 {
-	class SWOP_T21BlasterRifle;
+	/*class SWOP_T21BlasterRifle;
 	class RD501_RAMER: SWOP_T21BlasterRifle
 	{
 		baseWeapon="RD501_RAMER";
@@ -35,7 +35,7 @@ class cfgWeapons
 		{
 			"RD501_RAMER_x6_mag"
 		};
-	};
+	};*/
 	class arifle_MX_Base_F;
 	class JLTS_EPL2:arifle_MX_Base_F
 	{
@@ -53,5 +53,24 @@ class cfgWeapons
 		{
 			reloadTime=2;
 		}
+			class WeaponSlotsInfo
+		{
+			mass = 30;
+			class CowsSlot
+			{
+				displayName = "Optics Slot";
+				iconPicture = "\A3\Weapons_F\Data\UI\attachment_top.paa";
+				iconPinpoint = "Bottom";
+				iconPosition[] = {0.5,0.35};
+				iconScale = 0.2;
+				linkProxy = "\A3\data_f\proxies\weapon_slots\TOP";
+				scope = 0;
+				compatibleItems[] = 
+				{
+					"optic_Holosight_blk_F"
+				};
+
+			};
+		};
 	};
 };

+ 2 - 1
addons - Copy/RD501_Weapons/Westar/config.cpp

@@ -26,7 +26,7 @@ class CfgPatches
 
 class cfgWeapons 
 {	
-	class Rifle_Long_Base_F;
+	/*class Rifle_Long_Base_F;
 	class SWOP_BlasterRifle_Base :Rifle_Long_Base_F
 	{
 		
@@ -62,6 +62,7 @@ class cfgWeapons
 	};
 
 	#include "westar_pistol.hpp"
+	*/
 	class 3AS_WestarM5_Base_F;
 	class 3AS_WestarM5_F:3AS_WestarM5_Base_F
 	{

+ 2 - 2
addons - Copy/RD501_Weapons/Z6/config.cpp

@@ -28,7 +28,7 @@ class CfgPatches
 class Mode_SemiAuto;
 class cfgWeapons 
 {	
-	class Rifle_Base_F;
+	/*class Rifle_Base_F;
 	class Mode_FullAuto;
 	class SW_Z6_base_F:Rifle_Base_F
 	{
@@ -103,7 +103,7 @@ class cfgWeapons
 			};
 		};
 
-	};
+	};*/
 	class LMG_Mk200_F;
 	class JLTS_Z6:LMG_Mk200_F
 	{

+ 12 - 4
addons - Copy/RD501_Weapons/_mag/config.cpp

@@ -26,6 +26,7 @@ class CfgMagazines
 	class SWOP_DC15SA_Ammo;
 	class SWOP_termDet_Gm;
 	class SWOP_BCCKtermimploder_G;
+	class RPG32_F;
 	///Rifle/Pistol Magazines
 	class macro_new_mag(2mw,30) : 3AS_45Rnd_EC50_Mag
 	{
@@ -287,18 +288,25 @@ class CfgMagazines
 	{
 		scope=2;
 		displayName = "Republic Thermal Imploder";
-		displayNameShort = "Thermal Imploder";
+		displayNameShort = "Republic Thermal Imploder";
 		count=1;
 		ammo = macro_new_ammo(imploder)
-		descriptionShort = "Thermal Imploder";
+		descriptionShort = "Republic Thermal Imploder";
 	};
 	class macro_new_mag(thermaldet,1):SWOP_termDet_Gm
 	{
 		scope=2;
 		displayName = "Republic Thermal Detonator";
-		displayNameShort = "Thermal Detonator";
+		displayNameShort = "Republic Thermal Detonator";
 		count=1;
 		ammo = macro_new_ammo(thermaldet)
-		descriptionShort = "Thermal Detonator";
+		descriptionShort = "Republic Thermal Detonator";
 	};
+	/////////////////////////////////////////////////////
+	/////////////Missile  Magazines/////////////////////
+	////////////////////////////////////////////////////
+	class macro_new_mag(rps1,1):RPG32_F
+	{
+		scope=1;
+	}
 };

+ 1 - 1
addons - Copy/RD501_Weapons/_scopes/DC_15A_2-6x_acog.hpp

@@ -30,7 +30,7 @@ class macro_new_weapon(scope,dc_r15a_acog): itemCore
                 opticsZoomMin =  scope_magnification(.53);
                 opticsZoomMax = 1.25;
                 opticsZoomInit = 0.75;
-                memoryPointCamera = "eye";
+                memoryPointCamera = "opticView";
                 visionMode[] = {};
                 //discretefov[] = {scope_magnification(.53)};
                 discreteDistance[] = {200};

+ 8 - 2
addons - Copy/RD501_Weapons/rocket/config.cpp

@@ -30,7 +30,7 @@ class cfgWeapons
 	class RocketRPS6_F;
 	class JLTS_PLX1_AT;
 
-	class macro_new_weapon(hh,15):RocketHH15Clone
+	/*class macro_new_weapon(hh,15):RocketHH15Clone
 	{
 		author= "RD501";
 		_generalMacro = macro_new_weapon(hh,15)
@@ -58,7 +58,7 @@ class cfgWeapons
 		#include "rocket_scope_fix.hpp"
 
 		magazineWell[] += {macro_new_magwell(rocket_RPS)};
-	};
+	};*/
 
     class macro_new_weapon(Launcher,PLX1): JLTS_PLX1_AT
     {
@@ -68,6 +68,12 @@ class cfgWeapons
 		scopeCurator=2;
 		scopeArsenal=2;
 		displayName = "Republic PLX1s";
+		ace_javelin_enabled = 1;  // Enable Javelin-style locking (0-disabled, 1-enabled)
+        weaponInfoType = "ACE_RscOptics_javelin";  // Inteface
+        modelOptics = "\z\ace\addons\javelin\data\reticle_titan.p3d";  // Optics model
+        canLock = 0;  // Disable vanilla locking (0-disabled, 1-enabled)
+        lockingTargetSound[] = {"", 0, 1};  // Locking sound
+        lockedTargetSound[] = {"", 0, 1};  // Target acquired sound
     };
 
 };