1. Hi,

    how can i list all monuments on the map with the position. eg redtown = X,Y,Z airfield = X,Y,Z

    Thanks, Sir
     
  2. No i need the position in c# for my project
    [DOUBLEPOST=1477662916][/DOUBLEPOST]And lusty Map is a stolen map image from playrust.io...
     
  3. var monumentInfos = UnityEngine.Object.FindObjectsOfType<MonumentInfo>();
    foreach (var monumentInfo in monumentInfos)
    {
    X = monumentInfo.transform.position.x;
    Z = monumentInfo.transform.position.z;
    };