Auf die Gefahr hin, dich vollkommen zu verwirren...sowohl
Quote Originally Posted by quor
Var Kolo1 As New CMyColony(12345);
Var Ship1 As New CMyShip(123456);

WriteLine('Koords Kolo: ' & (CStr(Kolo1.SRS.Item(0).MapPosition));
WriteLine('Koords Shiff: ' & (CStr(Ship1.SRS.Item(0).MapPosition));
als auch
Quote Originally Posted by quor
Var Kolo1 As New CMyColony(68406);
Var Ship1 As New CMyShip(549215);

WriteLine('Koords Kolo: ' & Kolo1.SRS.Item(0).MapPosition.ToString());
WriteLine('Koords Shiff: ' & Ship1.SRS.Item(0).MapPosition.ToString());
funktionieren bei mir einwandfrei (nachdem ich die IDs durch eigene ersetzt hatte natürlich)...
An den Anführungszeichen liegts übrigens auch nicht, da geht tatsächlich beides
Ich schätz mal dass Item(0) auf das "nullte" Item des SRS zugreift, also das Schiff/die Kolonie selbst.