26.02.2011, 11:00
So there's no way to make it only 30sec ?
If I use SetTimerEx to call a "normal" timer ?
EDIT : Done with this :
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; }