25.01.2013, 23:19
Код:
C:\Users\pawno\include\PPC_PlayerCommands.inc(5057) : error 003: declaration of a local variable must appear in a compound block C:\Users\\pawno\include\PPC_PlayerCommands.inc(5057) : error 017: undefined symbol "id" C:\Users\pawno\include\PPC_PlayerCommands.inc(5057) : warning 215: expression has no effect C:\Users\pawno\include\PPC_PlayerCommands.inc(5057) : error 001: expected token: ";", but found "]" C:\Users\pawno\include\PPC_PlayerCommands.inc(5057) : fatal error 107: too many error messages on one line Compilation aborted.Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 4 Errors.
Код:
CMD:ip(playerid, params[])
{
if (APlayerData[playerid][PlayerLevel] >= 1)
new id,ip[17],string[65];
if(PInfo[playerid][Level] < 2) return SendClientMessage(playerid,red,error);
if(sscanf(params,"u",id)) return SendClientMessage(playerid,"USAGE:/ip <id/name>");
GetPlayerIp(id,ip,17);
format(string,sizeof(string),"%s(ID:%d)'s IP: %s",GetPName(id),id,ip);
SendClientMessage(playerid,green2,string);
return 1;
}


: