i am wondering if any 1 can help,
I have found this script floating around google
Marker.sqf
it is called by placing the following in the players unit init.Code:_temp = _this select 0; _varname = vehicleVarName _temp; _unit = objnull; createMarkerLocal [_varname, [0,0]]; _varname setMarkerShape "ICON"; _varname setMarkerColor "ColorBlack"; _varname setMarkerSize [1,1]; _varname setMarkerType "mil_dot"; while {true} do { waitUntil { call compile format ["_unit = %1",_varname]; alive _unit; }; while {alive _unit} do { if (side _unit == west) then { _varname setMarkerColor "ColorGreen"; }; if (side _unit == east) then { _varname setMarkerColor "ColorRed"; }; _varname setMarkerDir getDir _unit; _varname setMarkerPos getPos _unit; sleep 0.5; }; _varname setMarkerColor "ColorBlack"; sleep 5; };
It works fine to show a player marker on the map BUT i am wondering how would i also get the players name to show next to the marker. like in domination andCode:nul=[this] execVM "HOG scripts\marker.sqf";
HOME
Reply With Quote
[FRL]Myke

