06.08.2009, 18:59
yes once im back i will make so it read if players played over an hour, but its simple you make it.
then ongamemodeinit
like that dont copy it coz it wont work thats jsut an exsample but you need to make so it saves players playing time. then i can make it for you.
pawn Код:
forward timer();
pawn Код:
public timer()
{
for( new i = 0; i < MAX_PLAYERS; i++ )
{
if(PlayerInfo[i][Connected] > 1)
{
GivePlayerMoney(i,1000);
return 1;
}
pawn Код:
SetTimer("timer",60000,true);