arma3でチキンクリスプ食べながらスクリプト

arma3のエディッタ向けスクリプトを自分用に投稿

エアボーン(空挺降下)させるスクリプト

個人的に忘れないように記述
航空機 AirDropPlane
降下グループ Drop1
WPのアクティブ欄に記述すること

_null = [] spawn 
 {  
  { 
   if( ( (assignedVehicleRole _x)select 0 ) =="Cargo")  
   then{ 
     removeBackpack _x; 
     _x addBackpack "B_Parachute";  
     [_x] ordergetin false; 
     [_x] allowGetIn false; 
     unassignvehicle _x; 
     moveout _x; 
     sleep 1.1; 
    }; 
  }forEach(crew AirDropPlane); 
 }; 
 
{_x allowDamage false;}foreach units (Drop1);