DethMarine Posted September 18, 2013 Report Share Posted September 18, 2013 Does anyone know how to make it show all players ingame on the map? being my server is a PVE server no point in not being able to see people on the map makes it a little easier to find friends without having to ask on TS all the time. Link to comment Share on other sites More sharing options...
0 Lanmanfm Posted September 18, 2013 Report Share Posted September 18, 2013 in the server difficultly settings (can't think of the file name) you can set map =1 and it will show players on the map when you are close to them. shows vehicles and players both... was the first thing I turned off... Link to comment Share on other sites More sharing options...
0 DethMarine Posted September 18, 2013 Author Report Share Posted September 18, 2013 Yea I know about that setting it is set map = 1 by default but was looking for something that showed only the players on the map no matter how far they are from you and maybe only shows if they have navigation on them. I seen a script for it awhile back but can not find it anymore. Link to comment Share on other sites More sharing options...
0 axeman Posted September 20, 2013 Report Share Posted September 20, 2013 A bit of googling found this: private["_mapDrawEvent", "_unitList", "_i", "_j", "_unit", "_markerName", "_marker"]; _mapDrawEvent = { _unitList = allUnits; _i = 0; _j = count _unitList; for "_i" from 0 to _j do { _unit = _unitList select _i; _markerName = ("_playerMark" + (str _i)); deleteMarkerLocal _markerName; // Don't include the local player in this if(player != _unit) then { _marker setMarkerTypeLocal "mil_dot"; _marker setMarkerShapeLocal "ICON"; _marker setMarkerPosLocal (position _unit); _marker setMarkerColorLocal ("ColorRed"); _marker setMarkerTextLocal format["%1", name _unit]; _marker setMarkerSizeLocal [0.8, 0.8]; } }; deleteMarkerLocal "_mainPlayerMarker"; // Draw ourselves nukka _marker = createMarkerLocal["_mainPlayerMarker", position player]; _marker setMarkerTypeLocal "mil_dot"; _marker setMarkerShapeLocal "ICON"; _marker setMarkerPosLocal (position player); _marker setMarkerColorLocal ("ColorBlue"); _marker setMarkerTextLocal "YOURSELF"; _marker setMarkerSizeLocal [2.0, 2.0]; }; while{true} do { call _mapDrawEvent; sleep 1; }; not going to link to the source though, site looked a bit dodgy :P Link to comment Share on other sites More sharing options...
0 WEB11 Posted December 15, 2013 Report Share Posted December 15, 2013 Oh this great! where would I add this code? Link to comment Share on other sites More sharing options...
0 Just_R Posted June 14, 2014 Report Share Posted June 14, 2014 The dodgy site is a hacker's forum BTW. I did a bit of googling myself. Link to comment Share on other sites More sharing options...
Question
DethMarine
Does anyone know how to make it show all players ingame on the map? being my server is a PVE server no point in not being able to see people on the map makes it a little easier to find friends without having to ask on TS all the time.
Link to comment
Share on other sites
5 answers to this question
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now