22.07.2010, 18:49
You can like create a timer that calls on game mode init and do like
Then do
Correct me if I am wrong.
pawn Код:
SetTimer("RandMoney,300000,1); // Calls the function every 3 minutes
pawn Код:
public RandMoney();
{
GivePlayerMoney(random(MAX_PLAYERS),3000);
}