09.03.2009, 15:19
I thought KillTimer also works for SetTimerEx...
But, you can also try something like this:
Set "pointing[playerid]" true if you want players to get 5 ponits every 5 minutes
But, you can also try something like this:
pawn Код:
new bool:pointing[MAX_PLAYERS];
new Points[MAX_PLAYERS];
SetTimer("UpdatePoints", 30000, 1);
public UpdatePoints()
{
for (new i=0; i<GetMaxPlayers(); i++)
{
if (pointing[i]) Points[i]++;
}
}

