07.08.2010, 16:48
First, make a new function.
then put at the top of your script.
then put this under OnGameModeInIt
Код:
foward payday(); public payday(){ for(new i; i < MAX_PLAYERS; i++) { new Payday = GivePlayerMoney(i, 1000); SendClientMessage(i,COLOR,"payday!"); } }
Код:
new paydaytimer;
Код:
paydaytimer = SetTimer("payday", 6000, 1);