Jump to content
Sign in to follow this  
Kladho

marker following unit

Recommended Posts

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

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

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

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×