30 seconds radar ?
#3

So there's no way to make it only 30sec ?

If I use SetTimerEx to call a "normal" timer ?

EDIT : Done with this :

Код:
forward RadarTimer(playerid);
public RadarTimer(playerid)
{
    for(new i = 0; i < MAX_PLAYERS; i++)
    {
        if(IsPlayerConnected(i))
        {
            SetTimerEx("RadarTimer2", 30000, 0,"i", playerid);
        }
    }
	return 1;
}
forward RadarTimer2(playerid);
public RadarTimer2(playerid)
{
    for(new i = 0; i < MAX_PLAYERS; i++)
    {
        if(IsPlayerConnected(i))
        {
            SetPlayerMarkerForPlayer(playerid, i, INVISIBLE);
            uavforplayer[playerid]=0;
		}
    }
	return 1;
}
Reply


Messages In This Thread
30 seconds radar ? - by Shoko Lacho - 26.02.2011, 10:26
Re: 30 seconds radar ? - by deather - 26.02.2011, 10:49
Re : 30 seconds radar ? - by Shoko Lacho - 26.02.2011, 11:00
Re: 30 seconds radar ? - by maramizo - 26.02.2011, 11:15
Re: 30 seconds radar ? - by Mike Garber - 26.02.2011, 11:44

Forum Jump:


Users browsing this thread: 3 Guest(s)