06.11.2010, 18:04
use this
and this timer
this might do the trick
pawn Code:
SetTimer("ScoreTimer",900000,true); // 900000 = 15 minutes
pawn Code:
public ScoreTimer()
{
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i))
{
SetPlayerScore(i,GetPlayerScore(i) + 1);
}
}
}