revised heli lift

disallow if crew != 0 or detach if crew > 0
DZE_HeliLift = false; disables heli lift
This commit is contained in:
[VB]AWOL
2014-01-22 14:48:57 -06:00
parent 4549a5189f
commit d4edea2be4
3 changed files with 70 additions and 39 deletions

View File

@@ -73,6 +73,11 @@ if(_finished) then {
if(((getPos _liftHeli) select 2) < 5) then {
r_doLoop = false;
};
if ((count (crew _vehicle)) > 0) then {
r_doLoop = false;
};
if(typeName _attached == typeName false) then {
r_doLoop = false;
};