Kladho 10 Posted March 4, 2010 This is a simple question... how do you make a marker that follows the a unit Share this post Link to post Share on other sites
tobmic 10 Posted March 4, 2010 what about this in the init.sqf ? while {true} do{ "Marker" setmarkerpos (getpos player); sleep 5; }; Share this post Link to post Share on other sites
imutep 0 Posted March 4, 2010 Or you try this... NameMarker setMarkerColor "ColorBlue"; while {alive NameUnit} do { NameMarker setMarkerPos (getPos NameUnit); NameMarker setMarkerDir (getDir NameUnit); sleep 5; }; NameMarker setMarkerColor "ColorRed"; Share this post Link to post Share on other sites