Erliens 4 éve
szülő
commit
8a0c37d1ee

+ 14 - 0
addons - Copy/RD501_Main/config.cpp

@@ -595,6 +595,20 @@ class CfgVehicles
 			};
 		};
 	};
+	class Tank : LandVehicle
+	{
+		class ACE_Actions {
+			class ACE_MainActions {
+				class rd501_flip_vehicle_flip {
+					displayName = "Flip Vehicle";
+					condition = "[_player] call rd501_fnc_canFlipVehicle";
+					statement = "[_target] call rd501_fnc_flipVehicle";
+					exceptions[] = {};
+					icon = "rd501_main\ui_icons\mynock_flip_ace_icon.paa";
+				};
+			};
+		};
+	};
 	class StaticWeapon: LandVehicle {
 		class ACE_Actions {
 			class ACE_MainActions {

+ 38 - 0
addons - Copy/RD501_Vehicle_Weapons/_mags/aircraft_laser_gun.hpp

@@ -63,4 +63,42 @@
 		displayName = "Plasma Cores (Green)";
 		ammo = macro_new_ammo(generic_aircraft_laser_cannon_dual_green)
 		count = 1000;
+	};
+	class macro_new_mag(pylon_generic_aircraft_gun_asg,3000): 500Rnd_Cannon_30mm_Plane_CAS_02_F
+	{
+		displayNameShort = "AS Gun";
+		displayName = "Air Superiority Gun";
+		ammo = macro_new_ammo(generic_aircraft_laser_gun_green);
+		count = 3000;
+		hardpoints[]=
+		{
+			"RD501_Gun_rail"
+		};
+		pylonWeapon=macro_new_weapon(pylon_laser,v_wing)
+	};
+	class macro_new_mag(pylon_voltic,200):500Rnd_Cannon_ARCback
+	{
+		displayNameShort = "Voltic";
+		ammo = macro_new_ammo(voltic)
+		count = 200;
+		tracersEvery = 1;
+		initSpeed = 1036;
+		maxLeadSpeed = 300;
+		macro_no_muzzle_impulse
+		hardpoints[]=
+		{
+			"RD501_Gun_rail"
+		};
+		pylonWeapon=macro_new_weapon(pylon_voltic,y_wing)
+	};
+	class macro_new_mag(pylon_Kannon,100) : macro_new_mag(generic_aircraft_gun_green,1000)
+	{
+		ammo = macro_new_ammo(generic_kannon)
+		displayNameShort = "Coaxium Shells";
+		count = 15;
+		hardpoints[]=
+		{
+			"RD501_Gun_rail"
+		};
+		pylonWeapon=macro_new_weapon(pylon_generic,kannon)
 	};

+ 50 - 0
addons - Copy/RD501_Vehicle_Weapons/_mags/missiles.hpp

@@ -34,4 +34,54 @@
 	class macro_new_mag(lgm,1) : macro_new_mag(lgm,4)
 	{
 		count = 1;
+	};
+	class macro_new_mag(pylon_agm,6):PylonRack_1Rnd_Missile_AGM_01_F
+	{
+		ammo = macro_new_ammo(agm)
+		count = 6;
+		displayName = "Torrent AGM";	
+		displayNameShort = "Torrent AGM";
+		tracersEvery=1;
+		hardpoints[]=
+		{
+			"RD501_Universal_rail"
+		};
+		pylonWeapon=macro_new_weapon(pylon,agm)
+	};
+	class macro_new_mag(pylon_aa,4):4Rnd_AAA_missiles
+	{
+		ammo = macro_new_ammo(a2a)
+		count = 4;
+		displayName = "Zephyr A2A";
+		displayNameShort = "Zephyr A2A";
+		tracersEvery=1;
+		hardpoints[]=
+		{
+			"RD501_Universal_rail"
+		};
+		pylonWeapon=macro_new_weapon(pylon,a2a)
+	};
+	class macro_new_mag(pylon_lgm,4):4Rnd_LG_Jian
+	{
+		ammo = macro_new_ammo(lgm)
+		displayName = "Flashfire WGM";	
+		displayNameShort = "Flashfire WGM";
+		hardpoints[]=
+		{
+			"RD501_Universal_rail"
+		};
+		pylonWeapon=macro_new_weapon(pylon,lgm)
+	};
+	class macro_new_mag(pylon_ugm,10):7Rnd_Rocket_04_AP_F
+	{
+		ammo = macro_new_ammo(ugm)
+		count = 10;
+		displayName = "Hurricane UGM";	
+		displayNameShort = "Hurricane UGM";
+		tracersEvery=1;
+		hardpoints[]=
+		{
+			"RD501_Universal_rail"
+		};
+		pylonWeapon=macro_new_weapon(pylon,ugm)
 	};

+ 8 - 3
addons - Copy/RD501_Vehicle_Weapons/aircraft/y_wing_gau/config.cpp

@@ -16,7 +16,8 @@ class CfgPatches
 		requiredVersion=0.1;
 		units[]={};
 		weapons[]={
-			macro_new_weapon(voltic,y_wing)
+			macro_new_weapon(voltic,y_wing),
+			macro_new_weapon(pylon_voltic,y_wing)
 			
 		};
 	};
@@ -73,7 +74,11 @@ class CfgWeapons
 			reloadTime = 0.04;
 		};
 	};
-
-
+	class macro_new_weapon(pylon_voltic,y_wing) : macro_new_weapon(voltic,y_wing)
+	{
+		displayName = "Voltic (Pylon)";
+		displayNameShort = "Voltic";
+		magazines[]={macro_new_mag(pylon_voltic,200)};
+	};
 }; 
 

+ 20 - 3
addons - Copy/RD501_Vehicle_Weapons/config.cpp

@@ -15,7 +15,8 @@ class CfgPatches
 		requiredVersion=0.1;
 		units[]={};
 		weapons[]={
-		
+			macro_new_weapon(pylon_laser,v_wing),
+			macro_new_weapon(pylon_generic,kannon)
 		};
 	};
 };
@@ -23,7 +24,21 @@ class CfgPatches
 //scopes
 class CfgWeapons
 {
-
+	class macro_new_weapon(laser,v_wing);
+	class macro_new_weapon(generic,kannon);
+	class macro_new_weapon(pylon_laser,v_wing) : macro_new_weapon(laser,v_wing)
+	{
+		displayName = "Laser gun (Pylon)";
+		displayNameShort = "Laser";
+		magazines[]={macro_new_mag(pylon_generic_aircraft_gun_asg,3000)};
+	};
+	class macro_new_weapon(pylon_generic,kannon):macro_new_weapon(generic,kannon)
+	{
+		displayName = "Coaxium (Pylon)";
+		displayNameShort = "Coax";
+		magazines[]={macro_new_mag(pylon_Kannon,100)};
+	};
+	
 };
 
 class CfgMagazineWells
@@ -58,7 +73,8 @@ class CfgMagazineWells
 };
 
 class CfgMagazines
-{
+{	
+	class 500Rnd_Cannon_ARCback;
 	class 500Rnd_Cannon_30mm_Plane_CAS_02_F;
 
 	//laser gun + kannon
@@ -98,6 +114,7 @@ class CfgMagazines
 	class magazine_Missile_rim162_x8;
 	class PylonRack_12Rnd_PG_missiles;
 	class 4Rnd_LG_Jian;
+	class PylonRack_1Rnd_Missile_AGM_01_F;
 
 	#include "_mags/missiles.hpp"
 

+ 38 - 1
addons - Copy/RD501_Vehicle_Weapons/misc/missiles/config.cpp

@@ -31,6 +31,7 @@ class CfgWeapons
 	class Rocket_04_AP_Plane_CAS_01_F;
 	class missiles_DAGR;
 	class missiles_Jian;
+	class Missile_AGM_01_Plane_CAS_02_F;
 	
 
 	class macro_new_weapon(wynd,a2a) : missiles_ASRAAM
@@ -47,7 +48,7 @@ class CfgWeapons
 		displayName = "Torrent (AGM)";
 		displayNameShort = "Torrent";
 		canLock = 2;
-		magazines[] = {macro_new_mag(agm,6) };
+		magazines[] = {macro_new_mag(agm,6)};
 		soundfly[] = {"\xt\SWionrocketloop.ogg",3,1,800};
 		lockedTargetSound[] = {"TIE\LockedOn_2.ogg",0.7,1};
 		lockingTargetSound[] = {"TIE\Locking_Beep1.ogg",1,1};
@@ -74,5 +75,41 @@ class CfgWeapons
 		soundfly[] = {"\rd501_vehicle_weapons\_sounds\proton_torp.ogg",3,1,800};
 		magazines[] = {macro_new_mag(lgm,1)};
 	};
+	class macro_new_weapon(pylon,agm):missiles_DAGR
+	{
+		displayName = "Torrent(Pylon)";
+		displayNameShort = "Torrent";
+		canLock = 2;
+		magazines[] = {
+			macro_new_mag(pylon_agm,6)
+		};
+		soundfly[] = {"\xt\SWionrocketloop.ogg",3,1,800};
+		lockedTargetSound[] = {"TIE\LockedOn_2.ogg",0.7,1};
+		lockingTargetSound[] = {"TIE\Locking_Beep1.ogg",1,1};	
+	};
+	class macro_new_weapon(pylon,a2a) : missiles_ASRAAM
+	{
+		displayName = "Zephyr Pylon)";
+		displayNameShort = "Zephyr";
+		magazines[] = {mmacro_new_mag(pylon_aa,4)};
+		soundFly[] = {"\xt\SWrocketloop.ogg",3,1,800};
+		lockedTargetSound[] = {"TIE\LockedOn_2.ogg",0.7,1};
+		lockingTargetSound[] = {"TIE\Locking_Beep1.ogg",1,1};
+	};
+	class macro_new_weapon(pylon,ugm) : Rocket_04_AP_Plane_CAS_01_F
+	{
+		displayName = "Hurricane(Pylon)";
+		displayNameShort = "Hurricane";
+		soundfly[] = {"\xt\SWionrocketloop.ogg",3,1,800};
+		magazines[] = {macro_new_mag(pylon_ugm,10)};
+		autoFire=true;
+	};
+	class macro_new_weapon(pylon,lgm) : missiles_Jian
+	{
+		displayName = "Flashfire (Pylon)";
+		displayNameShort = "Flashfire";
+		soundfly[] = {"\rd501_vehicle_weapons\_sounds\proton_torp.ogg",3,1,800};
+		magazines[] = {macro_new_mag(pylon_lgm,4)};
+	};
 }; 
 

+ 167 - 0
addons - Copy/RD501_Vehicles/air/Z95/config.cpp

@@ -0,0 +1,167 @@
+#include "../../../RD501_main/config_macros.hpp"
+
+
+class CfgPatches
+{
+	class macro_patch_name(Z95)
+	{
+		addonRootClass=macro_patch_name(vehicles)
+
+		requiredAddons[]=
+		{
+			macro_patch_name(vehicles)
+		};
+		requiredVersion=0.1;
+		units[]=
+		{
+			macro_new_vehicle(z95,blue)
+		};
+		weapons[]=
+		{
+			
+		};
+	};
+};
+
+
+class CfgVehicles
+{
+	/*class Plane_Base_F: Plane
+	{
+		class AnimationSources;
+		class Components;
+	};*/
+	class Plane_Fighter_03_base_F;/*: Plane_Base_F
+	{
+		class Turrets
+		{
+			class MainTurret;
+		};
+	};*/
+	class Plane_Fighter_03_dynamicLoadout_base_F:Plane_Fighter_03_base_F
+	{
+		class Components;
+		/*class Turrets: Turrets
+		{
+			class MainTurret: MainTurret
+			{
+			};
+		};*/
+	};
+	class 3as_Z95_base: Plane_Fighter_03_dynamicLoadout_base_F
+	{
+		class Components: Components
+		{
+			class TransportPylonsComponent;
+		};
+	};
+	class macro_new_vehicle(z95,blue):3as_Z95_base
+	{
+		scope=2;
+		scopeCurator=2;
+		forceInGarage = 1;
+		side=1;
+		displayName = "Republic Z95 'Headhunter'"
+		author = "RD501"
+		faction = macro_republic_faction
+		editorSubcategory = macro_editor_cat_air(Republic_vtol)
+		vehicleClass = macro_editor_vehicle_type_air(Republic)
+		/*aileronCoef[]={0.5,0.69999999,1,1,1.2,1.15,1.1};*/
+		aileronSensitivity=2.9;
+		aileronControlsSensitivityCoef=4;
+		#include "../../common/universal_mfd.hpp"
+		weapons[]=
+		{
+			"CMFlareLauncher",
+			"Laserdesignator_pilotCamera"
+		};
+		magazines[]=
+		{
+			"Laserbatteries",
+			"120Rnd_CMFlare_Chaff_Magazine",
+			"120Rnd_CMFlare_Chaff_Magazine",
+			"120Rnd_CMFlare_Chaff_Magazine",
+			"120Rnd_CMFlare_Chaff_Magazine"
+		};
+		hiddenselections[]=
+		{
+			"camo",
+			"camo1",
+			"camo2"
+		};
+		hiddenselectionstextures[]=
+		{
+			"3AS\3as_Z95\Data\blue_co.paa",
+			"3AS\3as_Z95\Data\cockpit_co.paa",
+			"3AS\3as_saber\data\glass\glass_ca"
+		};
+		class Components: Components
+		{
+			class TransportPylonsComponent:TransportPylonsComponent
+			{
+				class pylons
+				{
+					class pylons1
+					{
+						hardpoints[]=
+						{
+							"RD501_Universal_rail"
+						};
+						attachment=macro_new_mag(pylon_agm,6)
+						priority=10;
+						maxweight=300;
+						UIposition[]={0.60000002,0.44999999};
+					};
+					class pylons2: pylons1
+					{
+						UIposition[]={0.050000001,0.44999999};
+						mirroredMissilePos=1;
+					};
+					class pylons3: pylons1
+					{
+						hardpoints[]=
+						{
+							"RD501_Universal_rail"
+						};
+						attachment=macro_new_mag(pylon_agm,6)
+						priority=9;
+						maxweight=2500;
+						UIposition[]={0.55000001,0.34999999};
+					};
+					class pylons4: pylons3
+					{
+						UIposition[]={0.1,0.34999999};
+						mirroredMissilePos=3;
+					};
+					class pylons5: pylons1
+					{
+						hardpoints[]=
+						{
+							"RD501_Universal_rail"
+						};
+						attachment=macro_new_mag(pylon_agm,6)
+						priority=7;
+						maxweight=5000;
+						UIposition[]={0.5,0.25};
+					};
+					class pylons6: pylons5
+					{
+						UIposition[]={0.15000001,0.25};
+						mirroredMissilePos=5;
+					};
+					class Pylons7
+					{
+						hardpoints[]=
+						{
+							"RD501_Gun_rail"
+						};
+						priority=5;
+						attachment=macro_new_mag(pylon_voltic,200)
+						maxweight=4000;
+						UIposition[]={0.32499999,0.15000001};
+					};
+				};
+			}
+		};
+	};
+};

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

@@ -445,7 +445,9 @@ class CfgVehicles
 		peakTorque = 7400;
 		torqueCurve[] = {[0.291667,0.540541],[0.416667,0.675676],[0.583333,0.810811],[0.666667,0.891892],[0.75,0.972973],[0.833333,1.02703],[0.916667,1],[1,0.945946]};
 		engineMOI = 1;
-		armor = 100;
+		armor = 500;
+		weapons[]={"SmokeLauncher"};
+		magazines[]={"SmokeLauncherMag"};
 		hiddenSelections[] = {"camo1", "camo2", "camo3", "camo4", "CamoNet"};
 		hiddenSelectionsTextures[]=
 		{

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

@@ -27,76 +27,6 @@ class CfgPatches
 class cfgWeapons 
 {
 	
-	/*class SWOP_BlasterRifle_Base;
-
-	class SWOP_dc15xBlasterRifle: SWOP_BlasterRifle_Base
-	{
-	
-		class OpticsModes;
-
-		class Single;
-
-	};
-
-	class macro_new_weapon(DC,15x_base):SWOP_dc15xBlasterRifle
-	{
-		class OpticsModes:OpticsModes
-		{
-			class Snip;
-			class Iron;
-		};
-
-		class Single:Single
-		{
-			dispersion = DC15x_accuracy
-			reloadTime = DC15x_reloadtime
-		};
-
-		DC_Family_Flashlight
-
-		ACE_Overheating_Dispersion = DC15a_Overheat_Dispersion
-		ACE_Overheating_SlowdownFactor = DC15a_Overheat_SlowdownFactor
-		ACE_Overheating_JamChance = DC15a_Overheat_JamChance
-		ACE_overheating_mrbs = DC15a_Overheat_mrbs
-		ACE_overheating_allowSwapBarrel = 1;
-		ACE_clearJamAction = "ReloadMagazine";
-
-	};
-
-	class macro_new_weapon(DC,15x):macro_new_weapon(DC,15x_base)
-	{	
-		displayName="DC-15 Xtreme Engagement";
-		scope=2;
-		scopeArsenal=2;
-		weaponPoolAvailable = 1;
-		dlc = "RD501";
-
-		author= "RD501";
-		baseWeapon = macro_new_weapon(DC,15x);
-
-		modelOptics = "\scope\DLT19XL.p3d";
-		magazines[]={macro_new_mag(DC15x,6)};
-		class OpticsModes:OpticsModes
-		{
-			
-			class Snip:Snip
-			{
-				opticsZoomMin = scope_magnification(24);
-				opticsZoomMax = 1.25;
-				opticsZoomInit = 0.75;
-				discretefov[] = {scope_magnification(12),scope_magnification(24)};
-
-				modelOptics = "\scope\DLT19XL.p3d";
-				visionMode[] = {"Normal", "NVG", "TI"};
-				thermalMode[] = {1,7};
-			};
-			class Iron:Iron
-			{
-				
-			};
-		};
-
-	};*/
 	class arifle_MX_Base_F;
 	class JLTS_DC15X: arifle_MX_Base_F
 	{
@@ -109,6 +39,7 @@ class cfgWeapons
 	class macro_new_weapon(DC,r15x):JLTS_DC15X
 	{
 		displayName="Republic DC-15X";
+		descriptionShort = "DC-15X Scope (12-20x)";
 		baseWeapon=macro_new_weapon(DC,r15x)
 		magazines[]=
 		{
@@ -126,7 +57,7 @@ class cfgWeapons
 			{
 				compatibleItems[]=
 				{
-					macro_new_weapon(scope,dc15x_12_20x_scope)
+					"RD501_LRPS"
 				};
 			};
 		};

+ 58 - 0
addons - Copy/RD501_Weapons/_acc/config.cpp

@@ -78,6 +78,11 @@ class CfgWeapons
 ////////////////////////////Optics///////////////////////////////
 /////////////////////////////////////////////////////////////////
 	class ItemCore;
+	class optic_LRPS:ItemCore
+	{
+		class ItemInfo;
+	}
+	class JLTS_DC15X_scope;
 	class optic_Hamr:ItemCore
 	{
 		class ItemInfo;
@@ -457,6 +462,59 @@ class CfgWeapons
 		model="RD501_Weapons\_acc\data\rd501_pistol_3.p3d";
 		displayName="Pistol Holo B";
 	};
+	class RD501_LRPS : optic_LRPS
+	{
+		author="RD501";
+		scope=2;
+		displayName="LRPS LR 12-20x Scope";
+		class ItemInfo:ItemInfo
+		{
+			mass=16;
+			opticType=2;
+			weaponInfoType="RscWeaponRangeZeroingFOV";
+			optics=1;
+			modelOptics="\A3\Weapons_F\acc\reticle_sniper_F";
+            class OpticsModes
+            {
+                class Snip
+                {
+                    opticsID=1;
+                    opticsDisplayName="WFOV";
+                    useModelOptics=1;
+                    opticsPPEffects[]=
+                    {
+                        "OpticsCHAbera1",
+                        "OpticsBlur1"
+                    };
+                    opticsZoomMin=0.0099999998;
+                    opticsZoomMax=0.041999999;
+                    opticsZoomInit=0.041999999;
+                    discreteDistance[]={300,400,500,600,700,800,900,1000,1100,1200,1300,1400,1500,1600,1700,1800,1900,2000,2100,2200,2300,2400};
+                    discreteDistanceInitIndex=2;
+                    distanceZoomMin=300;
+                    distanceZoomMax=2400;
+                    discretefov[]={0.041999999,0.0099999998};
+                    discreteInitIndex=0;
+                    memoryPointCamera="opticView";
+                    modelOptics[]=
+                    {
+                        "\A3\Weapons_F\acc\reticle_lrps_F",
+                        "\A3\Weapons_F\acc\reticle_lrps_z_F"
+                    };
+					visionMode[]=
+                    {
+                        "Normal",
+                        "NVG",
+                        "Ti"
+                    };
+                    thermalMode[]={4};
+                    opticsFlare=1;
+                    opticsDisablePeripherialVision=1;
+                    cameraDir="";
+                };
+            };
+		};
+	};
 ////////////////////////////////////////////////////////////////////////////
 ///////////////////////////Lights///////////////////////////////////////////
 ////////////////////////////////////////////////////////////////////////////

+ 0 - 9
addons - Copy/RD501_Weapons/_scopes/DC_15X_12_20x_scope.hpp

@@ -1,9 +0,0 @@
-
-class JLTS_DC15X_scope;
-class macro_new_weapon(scope,dc15x_12_20x_scope):JLTS_DC15X_scope
-{
-	scope = 2;
-    displayName = "DC-15X Scope (12-20x)";
-    descriptionShort = "DC-15X Scope (12-20x)";
-	visionMode[] = {"Normal", "NVG"};
-}

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

@@ -37,7 +37,6 @@ class CfgWeapons
 	
 	#include "_scopes/DC_15A_2-6x_acog.hpp"
 	
-	#include "_scopes/DC_15X_12_20x_scope.hpp"
 	class GrenadeLauncher;
 	class JLTS_stun_muzzle;
 	class RD501_stun_muzzle: JLTS_stun_muzzle
@@ -63,7 +62,8 @@ class CfgMagazineWells
 		macro_new_magwell(GL_AP)[]=
 		{
 			macro_new_mag(AT_GL,2),
-			macro_new_mag(UGL_AP,2)
+			macro_new_mag(UGL_AP,2),
+			"2Rnd_12Gauge_Pellets"
 		};
 
 		macro_new_magwell(GL_HE)[]=