loop not working for id 0
#1

im making a /ignore command, and it the ignore list doesn't work for id 0 but every other id (already tested)

any help?

pawn Код:
if(strcmp(cmdtext, "/ignorelist",true) == 0 || strcmp(cmdtext, "/il",true) == 0)
    {
        SendClientMessage(playerid, 0x2641FEAA, "Ignoring:");
       
        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);
                return 1;
            }
            else
            {
              SendClientMessage(playerid, COLOR_RED, "No One.");
              return 1;
            }
        }
      return 1;
    }
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: 3 Guest(s)