04.11.2012, 13:11
It was just my suggestion, if you hae a secondTimer in your script you can use.
Like i said it's just my suggestion
pawn Код:
new pSecTime[MAX_PLAYERS];
public SecondTimer()
{
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i) && pInfo[playerid][pLogged] == 1)
{
pSecTime[i]++;
if(pSecTime[i] == 60)
{
pSecTime[i] = 0;
pTime[i]++;
}
}
}
}
![Wink](images/smilies/wink.png)