07.08.2009, 04:57
How about this?
Put this Above main();
Put this Somewere on in the Code:
This Under GamemodeInit
regards
[GM]The_Don
Put this Above main();
Код:
forward PointScoreUpdate(playerid);
Код:
public PointScoreUpdate(playerid) { new Score = GetPlayerScore(playerid); SetPlayerScore(playerid,Score+1); return 1; }
Код:
SetTimer("PointScoreUpdate",60000,1);
[GM]The_Don