Money Timer
#10

Quote:
Originally Posted by ColdXX
i tried to put it here
pawn Код:
public myTimer()
{
  for(new u = 0; u < MAX_PLAYERS; u++) GivePlayerMoney(u, 10000);
  SendClientMessage(playerid,COLOR_BLUE,"You have received....");  
return 1;
}
but it said undefined symbol"playerid"...where should i put it?
There's a loop going through all players there... the varible is U.

pawn Код:
public myTimer()
{
  for(new u = 0; u < MAX_PLAYERS; u++) GivePlayerMoney(u, 10000);
  SendClientMessage(u,COLOR_BLUE,"You have received....");
}  
return 1;
Reply


Messages In This Thread
Money Timer - by Sajtos - 22.03.2010, 18:38
Re: Money Timer - by MrLeNy - 22.03.2010, 18:42
Re: Money Timer - by MaykoX - 22.03.2010, 18:43
Re: Money Timer - by Correlli - 22.03.2010, 18:45
Re: Money Timer - by Sajtos - 23.03.2010, 15:49
Re: Money Timer - by Joe_ - 23.03.2010, 16:15
Re: Money Timer - by ColdXX - 23.03.2010, 16:36
Re: Money Timer - by Joe_ - 23.03.2010, 16:37
Re: Money Timer - by ColdXX - 23.03.2010, 16:40
Re: Money Timer - by Joe_ - 23.03.2010, 16:41

Forum Jump:


Users browsing this thread: 3 Guest(s)