mirror of
https://github.com/Defent/DMS_Exile.git
synced 2024-08-30 16:52:12 +00:00
6368ad64eb
dasd
16 lines
494 B
Plaintext
16 lines
494 B
Plaintext
|
|
private["_mark","_name"];
|
|
DMS_Cords = _this select 0;
|
|
DMS_MainName = _this select 1;
|
|
|
|
_mark = createMarker ["DMS_MainMarker", DMS_Cords];
|
|
"DMS_MainMarker" setMarkerColor "ColorRed";
|
|
"DMS_MainMarker" setMarkerShape "ELLIPSE";
|
|
"DMS_MainMarker" setMarkerBrush "Grid";
|
|
"DMS_MainMarker" setMarkerSize [150,150];
|
|
|
|
_name = createMarker ["DMS_MainDot", DMS_Cords];
|
|
"DMS_MainDot" setMarkerColor "ColorBlack";
|
|
"DMS_MainDot" setMarkerType "mil_dot";
|
|
"DMS_MainDot" setMarkerText DMS_MainName;
|