loop not working for id 0
#6

Or:

pawn Код:
if(!strcmp(cmdtext,"/il",true)||!strcmp(cmdtext,"/ignorelist",true))
{
  new count=0;
  for(new i=0;i<MAX_PLAYERS;i++)
  {
    if(MyIgnoredPlayers[playerid][i] >= 1)
    {
      GetPlayerName(i,playername,sizeof(playername));
      format(string, sizeof(string), "%s (%d)", playername, i);
      SendClientMessage(playerid, 0xFFFFFFAA, string);
    }
    else
    {
      SendClientMessage(playerid, COLOR_RED, "No One.");
      return 1;
    }
  }
  return 1;
}
The advantage being that it doesn't change a variable 200 times.
Reply


Messages In This Thread
loop not working for id 0 - by StrickenKid - 16.05.2009, 21:01
Re: loop not working for id 0 - by Weirdosport - 16.05.2009, 21:03
Re: loop not working for id 0 - by MenaceX^ - 16.05.2009, 21:07
Re: loop not working for id 0 - by StrickenKid - 16.05.2009, 21:12
Re: loop not working for id 0 - by MenaceX^ - 16.05.2009, 21:15
Re: loop not working for id 0 - by Weirdosport - 16.05.2009, 21:41
Re: loop not working for id 0 - by Jefff - 16.05.2009, 22:15
Re: loop not working for id 0 - by [eLg]Timmy - 16.05.2009, 22:40
Re: loop not working for id 0 - by Weirdosport - 16.05.2009, 22:56
Re: loop not working for id 0 - by Nero_3D - 16.05.2009, 23:30

Forum Jump:


Users browsing this thread: 1 Guest(s)