mirror of
https://github.com/Defent/DMS_Exile.git
synced 2024-08-30 16:52:12 +00:00
158bc9ea68
Removed execVM. Made it better to use for .pbo filing etc. Fixed other things too.
16 lines
516 B
Plaintext
16 lines
516 B
Plaintext
DMS_CreateMarker = {
|
|
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;
|
|
}; |