Example Code: Reveal Units Temporarily: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - ";[ ]+ " to "; ") |
Lou Montana (talk | contribs) m (Some wiki formatting) |
||
Line 1: | Line 1: | ||
{{GVI|arma3|1.92}} | {{GVI|arma3|1.92}} | ||
< | <sqf> | ||
/* | |||
Author: Revo | Author: Revo | ||
Line 13: | Line 14: | ||
*/ | */ | ||
// | // replace here | ||
#define CENTER player // | #define CENTER player // the area around this object will be scanned | ||
#define RADIUS 100 // | #define RADIUS 100 // radius of the area | ||
#define DELETE_TIME 5 // | #define DELETE_TIME 5 // how long will the units be revealed in seconds | ||
#define TOLERANCE 5 // | #define TOLERANCE 5 // accuracy of the units positions in meters}} | ||
#define DELAY 1 // | #define DELAY 1 // delay in between reveal of units in seconds (60 units take 60 seconds to show) | ||
// | // replace end | ||
[CENTER,RADIUS,DELETE_TIME,TOLERANCE] spawn | [CENTER,RADIUS,DELETE_TIME,TOLERANCE] spawn | ||
Line 55: | Line 56: | ||
}; | }; | ||
true</ | true; | ||
</sqf> | |||
[[Category: Example Code]] | [[Category: Example Code]] |
Revision as of 18:52, 2 April 2022
/*
Author: Revo
Description:
Reveals units in a defined area temporarily.
Parameter(s):
See defines below
Returns:
BOOLEAN - true
*/
// replace here
#define CENTER player // the area around this object will be scanned
#define RADIUS 100 // radius of the area
#define DELETE_TIME 5 // how long will the units be revealed in seconds
#define TOLERANCE 5 // accuracy of the units positions in meters}}
#define DELAY 1 // delay in between reveal of units in seconds (60 units take 60 seconds to show)
// replace end
[CENTER,RADIUS,DELETE_TIME,TOLERANCE] spawn
{
params ["_center","_radius","_deleteTime","_tolerance"];
_nearestUnits = nearestObjects [_center, ["CAManBase"], _radius];
systemChat "Scanning in progress...";
createMarker ["areaBorderTemp", _center];
"areaBorderTemp" setMarkerShape "ELLIPSE";
"areaBorderTemp" setMarkerSize [_radius,_radius];
"areaBorderTemp" setMarkerBrush "Border";
{
_marker = createMarker [format ["tempMarker_%1",_forEachIndex],_x getPos [_tolerance,random 360]];
_marker setMarkerType "o_unknown";
_marker setMarkerColor "ColorUNKNOWN";
_marker setMarkerSize [0.5,0.5];
sleep DELAY;
} forEach _nearestUnits;
systemChat format ["%1 entities found.",count _nearestUnits];
systemChat format ["Position tolerance: %1 m",_tolerance];
sleep _deleteTime;
for "_i" from 0 to (count _nearestUnits) - 1 do
{
deleteMarker format ["tempMarker_%1",_i];
sleep DELAY;
};
deleteMarker "areaBorderTemp";
};
true;