11.02.2011, 19:44
Under OnGameModeInit
And at the end
Код:
SetTimer("pointsday", 900000, 1);
pawn Код:
forward pointsday();
public pointsday()
{
for(new i=0; i<=MAX_PLAYERS; i++)
{
GivePlayerMoney(i, 1000);
PlayerInfo[i][pExp] = PlayerInfo[i][pExp]+1;
GameTextForAll("It's Point's Day", 1000, 1);
}
}