What did i fuck up lmao
#1

Код:
CMD:geo(playerid, params[])
{
    new string[128], playa, geo, geo2, geo3;
    if(sscanf(params, "ud", playa))
	{
        SendClientMessageEx(playerid, COLOR_GREY, "USAGE: /geo [player]");
        return 1;
    }
    if (PlayerInfo[playerid][pAdmin] >= 4)
	{
        if(IsPlayerConnected(playa))
		{
            if(playa != INVALID_PLAYER_ID)
			{
				GetPlayerCountry(playerid, string[], const len = sizeof(geo));
				GetPlayerISP(playerid, string[], const len = sizeof(geo2));
				GetPlayerCity(playerid, string[], const len = sizeof(geo3));
                format(string, sizeof(string), "Looking up %s's GEO.. COUNTRY:%s ISP:%S CITY:%s .", GetPlayerNameEx(playa), geo, geo2, geo3);
                SendClientMessageEx(playerid, COLOR_WHITE, string);
            }
        }
    }
    else
	{
        Invalid_Admin(playerid);
    }
    return 1;
}
the errors i got
Код:
./includes/commands.pwn(1700) : error 029: invalid expression, assumed zero
./includes/commands.pwn(1700) : error 029: invalid expression, assumed zero
./includes/commands.pwn(1700) : error 017: undefined symbol "len"
./includes/commands.pwn(1700) : fatal error 107: too many error messages on one line

Compilation aborted.Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


4 Errors.
Reply


Messages In This Thread
What did i fuck up lmao - by minijackc - 27.04.2015, 05:26
Re: What did i fuck up lmao - by BroZeus - 27.04.2015, 05:34
Re: What did i fuck up lmao - by minijackc - 27.04.2015, 05:36

Forum Jump:


Users browsing this thread: 1 Guest(s)