Example Code: Reveal Units Temporarily: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - ";[ ]+ " to "; ")
m (Some wiki formatting)
Line 1: Line 1:
{{GVI|arma3|1.92}}
{{GVI|arma3|1.92}}


<syntaxhighlight lang="cpp">/*
<sqf>
/*
Author: Revo
Author: Revo


Line 13: Line 14:
*/
*/


//Replace here
// replace here
#define CENTER player //The area around this object will be scanned
#define CENTER player // the area around this object will be scanned
#define RADIUS 100   //Radius of the area
#define RADIUS 100   // radius of the area
#define DELETE_TIME 5 //How long will the units be revealed in seconds
#define DELETE_TIME 5 // how long will the units be revealed in seconds
#define TOLERANCE 5  //Accuracy of the units positions in meters}}
#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)
#define DELAY 1      // delay in between reveal of units in seconds (60 units take 60 seconds to show)
//Replace end
// replace end


[CENTER,RADIUS,DELETE_TIME,TOLERANCE] spawn  
[CENTER,RADIUS,DELETE_TIME,TOLERANCE] spawn  
Line 55: Line 56:
};
};


true</syntaxhighlight>
true;
</sqf>
 


[[Category: Example Code]]
[[Category: Example Code]]

Revision as of 19:52, 2 April 2022

Arma 3 logo black.png1.92

/* 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;