Jump to content
  • 0

Map markers gone


Rajayin

Question

Hello Survivors,

i have a problem on my own Server, i have Created, with the Editor, some Custom Things like Millitary Barracks, i have marked them with a Red Dot Marker permanently on Map, but after nearlly 30 Mins, the Markers are all gone from the map, i have ask the players, they dont see the markers anymore too. I dont know why, maybe someone can help me with it.

Here is a cut of my marker settings:

_this = createMarker ["ML2", [7222.8804, 3005.3467, 0]];
_this setMarkerText " ";
_this setMarkerType "Dot";
_this setMarkerColor "ColorRed";
_this setMarkerBrush "Solid";
_marker_8 = _this;
 

Marker Text is only 1 Space, that they dont have a text on map, just a simple red dot.
 

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0
3 minutes ago, salival said:

Creating Markers in the mission is possible of course, but I also prefer to do it via Script. You can simple create an Array with markerpositions then.

I don't know, why your marke disappear after some time, but...

_this = createmarker is bad! _this is a reserved variable!

Follow the script from s4m!

Link to comment
Share on other sites

  • 0
9 hours ago, S4M said:

This will help you

 

  Reveal hidden contents

[] execVM "custom/markers.sqf"; // in you mission init

marker.sqf

  Reveal hidden contents

//Markers

_marker = createMarker ["ML2", [7222.8804, 3005.3467, 0]];
_marker setMarkerType "mil_dot";
_marker setMarkerColor "ColorRed";

 

 

 

Thank you, this works totally fine

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Advertisement
  • Discord

×
×
  • Create New...