12 lines
449 B
Plaintext
12 lines
449 B
Plaintext
params ["_sector"];
|
|
|
|
private _return = 0;
|
|
|
|
if (KP_liberation_cr_param_buildings) then {
|
|
_return = count (nearestObjects [markerPos _sector, ["House"], 1.5 * GRLIB_capture_size] select {(damage _x == 0) && !((typeOf _x) in KP_liberation_cr_ign_buildings)});
|
|
} else {
|
|
_return = count (nearestObjects [markerPos _sector, ["House"], 1.5 * GRLIB_capture_size] select {(alive _x) && !((typeOf _x) in KP_liberation_cr_ign_buildings)});
|
|
};
|
|
|
|
_return
|