瀏覽代碼

so putting arc loadout on laat,works. Working to fix it

Namenai 7 年之前
父節點
當前提交
1b07d19f29

+ 0 - 1
Scripts/scripts/zeus3denScripts/vehicleBased/vehicleVariants/airBased/ARC/arcXiphos.sqf

@@ -99,4 +99,3 @@ xiphosI={
 };
 
 ["swop_arc_t", "init",xiphosI, true, [], true] call CBA_fnc_addClassEventHandler; 
-["swop_LAAT", "init",xiphosI, true, [], true] call CBA_fnc_addClassEventHandler; 

+ 39 - 34
Scripts/scripts/zeus3denScripts/vehicleBased/vehicleVariants/airBased/LAAT/laatClaymore.sqf

@@ -1,35 +1,22 @@
+xiphosI={
+	params["_vic"];
 
-
-laatClaymoreIV={
-    params ["_vic"];
-
+	
 	//if (!(_vic getVariable ["namReconfigured", false])) then 
 	//{
 	
-
-		
 		comment "data for weapons";
 		comment"format of [weapon,weaponMagType,[[seat,ammoPerMag,MagCount],[seat,ammoPerMag,MagCount],......etc]]";
 		weaponData=[
-		["Cannon_LAAT","1000Rnd_Laser_Cannon_LAAT",[[-1,1000,2]]],
-		["missiles_Jian","4Rnd_LG_Jian",[[-1,10,8],[0,1,1]]],
-		["weapon_rim116Launcher","magazine_Missile_rim116_x21",[[-1,8,1],[0,21,1]]],
-		["Cannon_TIE_FAST","10Rnd_FAST_Cannon_TIE",[[1,10,100],[2,10,100]]],
-		["PomehiLauncherXT","400Rnd_Pomehi_Mag",[[-1,600,10]]],
+		["weapon_rim116Launcher","magazine_Missile_rim116_x21",[[-1,21,2]]],
+		["missiles_Jian","4Rnd_LG_Jian",[[-1,4,1]]],
+		["conmis_arc","ConMisarc_mag",[[-1,8,2]]],
+		["PomehiLauncherXT","400Rnd_Pomehi_Mag",[[-1,400,10]]],
 		["Laserdesignator_pilotCamera","Laserbatteries",[[-1,1,1]]]
 		];
 
 
 
-		comment "remove torpedos";
-		for [{_i=0}, {_i<2}, {_i=_i+1}] do
-		{
-			_vic removeMagazineTurret ["laat_proton_torpedo" ,[-1]];  
-			_vic removeWeaponTurret["laat_proton_torpedo_launcher", [-1]];
-		};
-
-
-
 		comment "For each weapon";
 		for [{_i=0}, {_i<(count weaponData)}, {_i=_i+1}] do
 		{
@@ -48,13 +35,12 @@ laatClaymoreIV={
 				seatAmmoPerMag=seatData select 1;
 				seatMags=seatData select 2;
 
-			
+				_vic addWeaponTurret[itemWeapon, [seatIndex]];
 				
 				comment "adds mags";
 				for [{_k=0}, {_k<(seatMags)}, {_k=_k+1}] do
 				{
-					_vic addWeaponTurret[itemWeapon, [seatIndex]];
-					_vic addMagazineTurret [itemMagType ,[seatIndex],seatAmmoPerMag];
+					_vic  addMagazineTurret [itemMagType ,[seatIndex],seatAmmoPerMag];
 
 				};
 
@@ -65,33 +51,52 @@ laatClaymoreIV={
 
 		};
 	//	_vic setVariable ["namReconfigured", true, true];
-
-	//}
+//	}
 //	else {};
+	
+	// function as file
+	_vic  addAction ["<t color='#886688'>Smoker--------U13</t>",
+	{[_this select 0] execVM "scripts\zeus3denScripts\vehicleBased\actionMenu\Smoke\ARC\arcSmokeTip.sqf";}
+	,[1],0,false,true,"User13"," driver  _target == _this"];
+	
 
 
 	comment "gets health";
-	_vic addAction ["<t color='#00FF00'>Damage Report</t>",
+	_vic   addAction ["<t color='#00FF00'>Damage Report</t>",
 	{
 
 
 	hint parseText format["<t color='#0099FF'> Hull Integrity is :%1%2</t>",((1-(damage (_this  select 0)))*100),"%"];
 
 	},[1],0,false,true,""," driver  _target == _this "];
+
+
+
+
+	comment "Increment Throttle";
+	_vic  addAction ["<t color='#0000FF'>Increment Throttle--------U16</t>",
+	{
+	(_this select 0) setAirplaneThrottle ((airplaneThrottle (_this select 0))+.01);
+
+	},[1],0,false,true,"User16","driver  _target == _this"];
+
+
+	comment "Decrement Throttle";
+	_vic  addAction ["<t color='#FF0000'>Decrement Throttle--------U17</t>",
+	{
+	(_this select 0) setAirplaneThrottle ((airplaneThrottle (_this select 0))-0.01);	
+
+	},[1],0,false,true,"User17","driver  _target == _this"];
 	
 	
+	
+	[_vic] execVm "scripts\zeus3denScripts\vehicleBased\vehicleVariants\airBased\ARC\removeEject.sqf";
 
 	
-	// function as file
-	_vic  addAction ["<t color='#886688'>Smoker--------U13</t>",
-	{[_this select 0] execVM "scripts\zeus3denScripts\vehicleBased\actionMenu\Smoke\LAAT\laatSmokeTip.sqf";}
-	,[1],0,false,true,"User13"," driver  _target == _this"];
 	
-	//for some reason laats dont show CM's,this is hopefully to get them to show
-	_vic addWeaponTurret["PomehiLauncherXT", [-1]];
-	_vic addMagazineTurret ["400Rnd_Pomehi_Mag" ,[-1],400];
+	
 	
 };
 
-//["swop_LAAT", "init",laatClaymoreIV, true, [], true] call CBA_fnc_addClassEventHandler; 
 
+["swop_LAAT", "init",xiphosI, true, [], true] call CBA_fnc_addClassEventHandler;