Need help with personal car system!
#5

Quote:
Originally Posted by GTLS
Посмотреть сообщение
Show us GetPlayerVehicleAccess. Something is wrong there.
Here is the code:
Код:
GetPlayerVehicleAccess(playerid, vehicleid)
{
	if(IsValidVehicle(vehicleid))
	{
		if(VehicleCreated[vehicleid] == VEHICLE_DEALERSHIP)
		{
			if(!IsPlayerAdmin(playerid))
			{
				return 1;
			}
		}
		else if(VehicleCreated[vehicleid] == VEHICLE_PLAYER)
		{
			if(strcmp(VehicleOwner[vehicleid], PlayerName(playerid)) == 0)
			{
				return 2;
			}
		}
	}
	else
	{
		return 1;
	}
	return 0;
}
Reply


Messages In This Thread
Need help with personal car system! - by NavedAkhter - 29.05.2018, 04:44
Re: Need help with personal car system! - by mjay768 - 29.05.2018, 05:26
Re: Need help with personal car system! - by NavedAkhter - 29.05.2018, 05:39
Re: Need help with personal car system! - by GTLS - 29.05.2018, 05:43
Re: Need help with personal car system! - by NavedAkhter - 29.05.2018, 05:46
Re: Need help with personal car system! - by NavedAkhter - 29.05.2018, 06:02
Re: Need help with personal car system! - by GTLS - 29.05.2018, 06:05
Re: Need help with personal car system! - by NavedAkhter - 29.05.2018, 06:07
Re: Need help with personal car system! - by GTLS - 29.05.2018, 06:14
Re: Need help with personal car system! - by NavedAkhter - 29.05.2018, 06:16

Forum Jump:


Users browsing this thread: 1 Guest(s)