small warning, but how to remove it?
#1

Does anyone know how to remove this warning??

Код:
	
public OnPlayerText(playerid, text[])
{
if(text[0] == ';')
	{
		new string[256],name[24];
		GetPlayerName(playerid,name,24);
 		format(string, sizeof(string),"*** [TPM] %s(%d): %s", name, playerid, text[1]);
		for (new i = 0; i < MAX_PLAYERS; i++) --> This is line 9462
		{
			if(IsPlayerConnected(i))
			{
            if(gTeam[i] == gTeam[playerid])
			SendClientMessage(i, COLOR_TPM, string);
			}
		}
		return 0;
	}

  return 1;
}
This is the error

Код:
C:\Program Files\Rockstar Games\GTA San Andreas\gamemodes\WorldTurfFun.pwn(9462) : warning 219: local variable "i" shadows a variable at a preceding level
Thanks for helping!!
Reply


Messages In This Thread
small warning, but how to remove it? - by smokey104 - 18.06.2009, 11:05
Re: small warning, but how to remove it? - by Grim_ - 18.06.2009, 11:08
Re: small warning, but how to remove it? - by robanswe - 18.06.2009, 11:10
Re: small warning, but how to remove it? - by Grim_ - 18.06.2009, 11:14
Re: small warning, but how to remove it? - by robanswe - 18.06.2009, 11:17
Re: small warning, but how to remove it? - by Grim_ - 18.06.2009, 11:19
Re: small warning, but how to remove it? - by smokey104 - 18.06.2009, 12:54

Forum Jump:


Users browsing this thread: 1 Guest(s)