02.04.2011, 00:21
how can i make players cant buy weapons at ammu shop and second question, how i make players gets +1 score every 5 minutes
forward GiveScore();
//Under OnGameModeInit / OnFilterScriptInit whichever you're using
SetTimer("GiveScore",300000,1);
public GiveScore()
{
for(new i; i<MAX_PLAYERS; i++)
SetPlayerScore(i,GetPlayerScore(i)+1);
return 1;
}