private arrays part 2

This commit is contained in:
[VB]AWOL
2013-10-22 10:16:20 -05:00
parent af4b876cde
commit 207f4e3b88
58 changed files with 91 additions and 62 deletions

View File

@@ -1,5 +1,6 @@
// allowDamage.sqf
private ["_unit"];
_unit = _this select 0;
_unit switchMove "AmovPpneMstpSnonWnonDnon_healed";

View File

@@ -1,5 +1,6 @@
// animDrag.sqf
private ["_dragee"];
_dragee = _this select 0;
_dragee switchmove "ainjppnemstpsnonwrfldb_still";

View File

@@ -1,5 +1,6 @@
// animHealed.sqf
private ["_unit"];
_unit = _this select 0;
_unit switchMove "AmovPpneMstpSnonWnonDnon_healed";

View File

@@ -1,4 +1,5 @@
//carriedUp.sqf
private ["_dragee"];
_dragee = _this select 0;
_dragee switchmove "ainjpfalmstpsnonwrfldnon_carried_up";

View File

@@ -1,6 +1,6 @@
//deadState.sqf
private ["_unit"];
_unit = _this select 0;
_unit switchMove "deadState";
_unit switchMove "deadState";

View File

@@ -1,6 +1,6 @@
//lieStill.sqf
private ["_dragee"];
_dragee = _this select 0;
_dragee playMoveNow "ainjppnemstpsnonwrfldnon";
_dragee playMoveNow "ainjppnemstpsnonwrfldnon";

View File

@@ -1,5 +1,6 @@
// load_wounded.sqf
private ["_unit"];
_unit = _this select 0;
_unit switchMove "kia_hmmwv_driver";

View File

@@ -1,5 +1,5 @@
// medBreakLegs.sqf
private["_array","_unit","_attacker","_display","_control","_hitLegs","_hitArms"];
private ["_array","_unit","_attacker","_cnt","_index","_hit","_damage","_wound","_isInjured","_lowBlood"];
disableserialization;
_array = _this; //_this select 0;
_unit = _array select 0;

View File

@@ -1,4 +1,6 @@
// animHealed.sqf
private ["_array","_unit","_medic","_isDead"];
_array = _this; //_this select 0;
_unit = _array select 0;
_medic = _array select 1;

View File

@@ -1,5 +1,5 @@
// animHealed.sqf
private["_array","_unit","_medic","_display","_control","_hitLegs","_hitArms"];
private ["_array","_unit","_medic","_display","_control","_id"];
disableserialization;
_array = _this; //_this select 0;
_unit = _array select 0;

View File

@@ -1,4 +1,6 @@
// animHealed.sqf
private ["_array","_unit","_medic"];
_array = _this; //_this select 0;
_unit = _array select 0;
_medic = _array select 1;

View File

@@ -1,5 +1,5 @@
// animHealed.sqf
private["_array","_unit","_medic","_display","_control","_lowBlood"];
private ["_array","_unit","_medic","_display","_control","_rndInfection","_TransfusionInfection"];
disableserialization;
_array = _this; //_this select 0;
_unit = _array select 0;

View File

@@ -1,4 +1,6 @@
// animHealed.sqf
private ["_array","_unit","_medic","_item"];
_array = _this; //_this select 0;
_unit = _array select 0;
_medic = _array select 1;

View File

@@ -1,5 +1,6 @@
//noAnim.sqf
private ["_unit"];
_unit = _this select 0;
_unit switchMove "";

View File

@@ -1,8 +1,9 @@
// noDamage.sqf
private ["_unit"];
_unit = _this select 0;
_unit setCaptive 3;
_unit switchMove "AmovPpneMstpSnonWnonDnon_healed";
_unit allowDamage false;
sleep 0.01;
sleep 0.01;

View File

@@ -1,5 +1,6 @@
// pickUp.sqf
private ["_unit"];
_unit = _this select 0;
_unit switchMove "acinpknlmstpsraswrfldnon_acinpercmrunsraswrfldnon";

View File

@@ -1,5 +1,6 @@
// promptRName.sqf
private ["_unit"];
_unit = _this select 0;
call compile format ["server globalChat reviver_%1", _unit];

View File

@@ -1,6 +1,6 @@
// rolltoback.sqf
private ["_unit"];
_unit = _this select 0;
_unit switchMove "ainjppnemstpsnonwrfldnon_rolltoback";
_unit switchMove "ainjppnemstpsnonwrfldnon_rolltoback";

View File

@@ -1,6 +1,6 @@
// rolltofront.sqf
private ["_unit"];
_unit = _this select 0;
_unit switchMove "ainjppnemstpsnonwrfldnon_rolltofront";
_unit switchMove "ainjppnemstpsnonwrfldnon_rolltofront";

View File

@@ -1,5 +1,6 @@
// set180.sqf
private ["_dragee"];
_dragee = _this select 0;
_dragee setDir 180;