Answers for "arma 3 remove item from vehicle"

1

arma 3 remove item from vehicle

// 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;
Posted by: Guest on April-02-2020

Browse Popular Code Answers by Language