07.08.2010, 16:42
pawn Код:
SetTimer("Payday", 60*1000, true);
return 1;
}
forward Payday();
public Payday()
{
new Payday;
for(new i; i < MAX_PLAYERS; i++) {
Payday = GivePlayerMoney(i, 1000);
SendClientMessage(i, COLOR_RED, "..:Payday:..");
SendClientMessage(i, COLOR_WHITE, "You have recieved $1000 in to your bank"
SendClientMessage(i, COLOR_RED, "Spend it wisley!");
}
return 1;
}