4 errors and a few warnings
#5

Quote:
Originally Posted by JustBored
Посмотреть сообщение
pawn Код:
GetPlayerVehicleAccess(playerid, vehicleid)
{
    if(IsValidVehicle(vehicleid))
    {
        if(VehicleCreated[vehicleid] == VEHICLE_DEALERSHIP)
        {
            if(IsAdmin(playerid, 1))
            {
                return 1;
            }
        }
        else if(VehicleCreated[vehicleid] == VEHICLE_PLAYER)
        {
            if(PlayerName(playerid) == VehicleOwner[playerid]) //to use strcmp vehicle Owner must be a string.
            {
                return 2;
            }
            else if(GetPVarInt(playerid, "CarKeys") == vehicleid)
            {
                return 1;
            }
        }
    }
    else
    {
        return 1;
    }
    return 0;
}
pawn Код:
stock PlayerName(playerid)
{
    new pName[24];
    GetPlayerName(playerid, pName, 24);
    return pName;
}
Which of those lines are the 1055?
am only getting 4 errors now i fixed others but this

Код:
2172) : error 012: invalid function call, not a valid address

Код:
GetPlayerVehicleAccess(playerid, vehicleid)
{
	if(IsValidVehicle(vehicleid))
	{
		if(VehicleCreated[vehicleid] == VEHICLE_DEALERSHIP)
		{
			if(IsAdmin(playerid, 1))
			{
				return 1;
			}
		}
		else if(VehicleCreated[vehicleid] == VEHICLE_PLAYER)
		{
			if(PlayerName(playerid) == VehicleOwner[playerid]) //to use strcmp vehicle Owner must be a string. 
			{
				return 2;
			}
			else if(GetPVarInt(playerid, "CarKeys") == vehicleid)
			{
				return 1;
			}
		}
	}
	else
	{
		return 1;
	}
	return 0;
}

COME ON GUYS AM REALLY NEED OF GETTING THIS FIXED.
Reply


Messages In This Thread
4 errors and a few warnings - by OpticKiller - 03.06.2013, 04:14
Re: 4 errors and a few warnings - by Captive - 03.06.2013, 04:22
Re: 4 errors and a few warnings - by OpticKiller - 03.06.2013, 05:58
Respuesta: 4 errors and a few warnings - by JustBored - 03.06.2013, 06:12
Re: Respuesta: 4 errors and a few warnings - by OpticKiller - 03.06.2013, 06:14
Re: 4 errors and a few warnings - by BossZk - 03.06.2013, 13:41
Re: 4 errors and a few warnings - by OpticKiller - 04.06.2013, 17:07
Re: 4 errors and a few warnings - by NvidiaForTheWin - 04.06.2013, 17:24
Re: 4 errors and a few warnings - by FunnyBear - 04.06.2013, 17:27
Re: 4 errors and a few warnings - by OpticKiller - 04.06.2013, 17:49

Forum Jump:


Users browsing this thread: 1 Guest(s)