Jump to content
Sign in to follow this  
meatball

Flashing / Blinking Markers?

Recommended Posts

Anyone know of any way to make an area marker flash / blink on the map screen? MP compatible if possible.

Share this post


Link to post
Share on other sites
Anyone know of any way to make an area marker flash / blink on the map screen? MP compatible if possible.

Server side script that changes the Alpha of markers.

if isServer then {
_mkrArray = ["mkr_1","mkr_2","mkr_3"];
while {true} do {
{
_x setMarkerAlpha 0.5;
}forEach _mkrArray ;
sleep 0.3;
{
_x setMarkerAlpha 1;
}forEach _mkrArray;
sleep 0.3;
};
};

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  

×