📜  arma 3 从车辆中删除项目 - 任何代码示例

📅  最后修改于: 2022-03-11 14:58:34.303000             🧑  作者: Mango

代码示例1
// Save a copy of the current cargo
private _a = itemCargo _vehicle

// Remove the item
_a deleteAt (_a find "CLASS_NAME")

// Add the rest
{
    _vehcicle addItemCargo [_x, 1];
} forEach _a;