Plate System
#1

I need the spawne car with a plate inside the gamemode and save this card like this:

Код:
stock FindVehicleByPlate(plate[])
{
	for(new i = 0; i < MAX_VEHICLES; i++)
	{
		if(!strcmp(CarData[i][carPlate], vehicleid, true))
		{
			return i;
		}
	}
	return 0;
}
I'm using script South Central Roleplay!
Reply
#2

Код:
stock FindVehicleByPlate(plate[])
{
	for(new i = 0; i < MAX_VEHICLES; i++)
	{	
		if(strcmp(CarData[i][carPlate], plate, true) == 0)
		{
			return i;
		}
	}
	
	return 0;
}
Reply
#3

what? helps me deploy in gm?
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)