Procházet zdrojové kódy

Update vicSpawner.sqf

AdrianR98 před 7 roky
rodič
revize
acc977cf9e
1 změnil soubory, kde provedl 12 přidání a 12 odebrání
  1. 12 12
      Scripts/vicSpawner.sqf

+ 12 - 12
Scripts/vicSpawner.sqf

@@ -1,6 +1,6 @@
 
- _this setvariable ["Unit","swop_LAAT",true];
- _this setvariable ["height",1,true];
+ _this setvariable ["Unit","swop_LAAT",false];
+ _this setvariable ["height",1,flase];
  
  _this setvariable ["launchPad",pad_middle,true];
  
@@ -15,7 +15,7 @@
 
 _this  addAction ["<t color='#00FF00'>Laat MK1</t>",
 {
- (_this select 0) setvariable ["Unit","swop_LAAT",true];
+ (_this select 0) setvariable ["Unit","swop_LAAT",false];
 
 }
 ];
@@ -23,7 +23,7 @@ _this  addAction ["<t color='#00FF00'>Laat MK1</t>",
 
 _this  addAction ["<t color='#00FF00'>Laat MK2</t>",
 {
-(_this select 0) setvariable["Unit","swop_LAATmk2",true];
+(_this select 0) setvariable["Unit","swop_LAATmk2",false];
  
 }
 ];
@@ -31,7 +31,7 @@ _this  addAction ["<t color='#00FF00'>Laat MK2</t>",
 
 _this  addAction ["<t color='#F4A460 '>Laat MK2 74th</t>",
 {
-(_this select 0) setvariable["Unit","swop_LAATmk2_74",true];
+(_this select 0) setvariable["Unit","swop_LAATmk2_74",false];
   
 }
 ];
@@ -39,7 +39,7 @@ _this  addAction ["<t color='#F4A460 '>Laat MK2 74th</t>",
 
 _this  addAction ["<t color='#0000FF'>Laat MK2 104th</t>",
 {
-(_this select 0) setvariable["Unit","swop_LAATmk2_104",true];
+(_this select 0) setvariable["Unit","swop_LAATmk2_104",false];
 
 }
 ];
@@ -47,7 +47,7 @@ _this  addAction ["<t color='#0000FF'>Laat MK2 104th</t>",
 
 _this  addAction ["<t color='#FF0000'>Laat MK2 Spec Op</t>",
 {
-(_this select 0) setvariable["Unit","swop_LAATmk2_spec",true];
+(_this select 0) setvariable["Unit","swop_LAATmk2_spec",false];
  
 }
 ];
@@ -55,21 +55,21 @@ _this  addAction ["<t color='#FF0000'>Laat MK2 Spec Op</t>",
 
 _this  addAction ["<t color='#00f9ff'>Laat MK2 ARC</t>",
 {
-(_this select 0) setvariable["Unit","swop_LAATmk2_ARC",true];
+(_this select 0) setvariable["Unit","swop_LAATmk2_ARC",false];
   
 }
 ];
 
 _this  addAction ["<t color='#0000FF'>Laat Cargo</t>",
 {
-(_this select 0) setvariable["Unit","swop_LAAT_cargo",true];
+(_this select 0) setvariable["Unit","swop_LAAT_cargo",false];
 
 }
 ];
 
 _this  addAction ["<t color='#FF0000'>ARC-170</t>",
 {
-(_this select 0) setvariable["Unit","swop_arc_t",true];
+(_this select 0) setvariable["Unit","swop_arc_t",false];
  
 }
 ];
@@ -77,7 +77,7 @@ _this  addAction ["<t color='#FF0000'>ARC-170</t>",
 
 _this  addAction ["<t color='#FFFF00'>Y-Wing</t>",
 {
-(_this select 0) setvariable["Unit","swop_ywclones",true];
+(_this select 0) setvariable["Unit","swop_ywclones",false];
   
 }
 ];
@@ -95,7 +95,7 @@ _this  addAction ["Spawn Vehicle",
  _unit=createVehicle [_item, [(getPos pad select 0), (getPos pad select 1), (getPos pad select 2)+_Z], [], 0,"CAN_COLLIDE"];
  _unit setDir (getDir pad);
  
- hint format["pad %1              unit %2",(position pad),(position _unit)];
+ hint format["pad %1              unit %2",(pad),(_unit)];
  
 }
 ];