Vadym Mazur 5 Posted October 20, 2023 Good day. Its possible add more markers for map legend server-side? Im trying create foulder "icons" and put inside image.paa description.ext class CfgMarkerClasses { class NewMarkers { displayName="New Markers"; }; }; class CfgMarkers { class image_simple { name="Marker name"; icon="icons\image.paa"; color[]={1,1,1,1}; size=32; shadow=0; markerClass="NewMarkers"; }; }; Thanks in advance Share this post Link to post Share on other sites
Vadym Mazur 5 Posted October 21, 2023 It’s possible only via mod? Share this post Link to post Share on other sites
mrcurry 508 Posted October 21, 2023 On 10/20/2023 at 10:55 AM, Vadym Mazur said: Good day. Its possible add more markers for map legend server-side? Im trying create foulder "icons" and put inside image.paa description.ext class CfgMarkerClasses { class NewMarkers { displayName="New Markers"; }; }; class CfgMarkers { class image_simple { name="Marker name"; icon="icons\image.paa"; color[]={1,1,1,1}; size=32; shadow=0; markerClass="NewMarkers"; }; }; Thanks in advance Only a mod can add things to CfgMarkers and CfgMarkerClasses. The only way you can get clients to download image data from the server is to include it in the mission. You can draw icons on the map using drawIcon, note that these do not function like regular markers have to be manually managed. See the examples in the linked BIKI page. 1 Share this post Link to post Share on other sites