Jump to content
Sign in to follow this  
meatball

Full List of all Object ID's/Names on Stratis?

Recommended Posts

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

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

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×