04.10.2009, 23:19
Easy 
do it like this:
On the top of your script,after the includes put:
Under OnPlayerConnect:
And in the end of the script,make a callback,here:
Hope i helped.
PS:now after every 60 seconds everyone will get +1 point
I've tested it,its working
Oh and,you see the "60000",it means every 60 seconds,its in ms,it means,miliseconds,1000=1 second,so if you want any player to get
1 point after every second,change the 60000 to 1000.

do it like this:
On the top of your script,after the includes put:
pawn Код:
forward ScoreTimer(playerid);
pawn Код:
SetTimerEx("ScoreTimer",60000,0,"d",playerid);
pawn Код:
public ScoreTimer(playerid)
{
SetPlayerScore(playerid,(playerid)+1);
return 1;
}
PS:now after every 60 seconds everyone will get +1 point
I've tested it,its working

Oh and,you see the "60000",it means every 60 seconds,its in ms,it means,miliseconds,1000=1 second,so if you want any player to get
1 point after every second,change the 60000 to 1000.