16 lines
331 B
Plaintext
16 lines
331 B
Plaintext
#include "..\script_component.hpp"
|
|
|
|
params [["_center",objNull],["_rad",200]];
|
|
|
|
//create array for special objects
|
|
private _sA = [];
|
|
{
|
|
_sA pushBack (_x select 0);
|
|
} forEach GVAR(specialLightTypes);
|
|
|
|
//search for and return objects
|
|
nearestObjects [
|
|
_center,
|
|
["man","car","tank","air"] + GVAR(streetAndLampClasses) + _sA,
|
|
_rad
|
|
]; |