meatball 25 Posted June 29, 2013 Random question. Is there any way to get a dump or search through the all the Names/Object ID's on Stratis? For example, if someone wanted to find where every transmitter tower, or solar transformer, or whatever is on the entire map, there a simple way to do that? Share this post Link to post Share on other sites
jw custom 56 Posted June 29, 2013 Place a trigger in the center of the map, set activation to radio something. In the "On activation" field put: myObjects = nearestObjects [thisTrigger, ["Land_Communication_F"], 5000]; nul = [] spawn {{_mrkName = format ["name%1", getPosATL _x]; _marker = createMarker[_mrkName, getPosATL _x]; _marker setMarkerType 'hd_dot'; _marker setMarkerSize[1, 1]; _marker setMarkerDir 1; _marker setMarkerColor 'ColorOrange'; _marker setMarkerText str(getPosATL _x); _count = _count + 1; sleep 1} forEach myObjects}; When you activate the radio trigger a "hd_dot" marker will be created on top of all communcation towers with their xyz position as name. Share this post Link to post Share on other sites