Stock LoadPlates
#1

I'm using a stock, LoadPlates but it's not working very well, I've few types of plates, STOCK:
Код:
stock LoadPlates()
{
	for(new i=0; i<MAX_VEHICLES; i++)
	{
	    SetVehicleNumberPlate(IsCopVehicle(i), "LSPD");
	    SetVehicleNumberPlate(IsMedicVehicle(i), "LSEMS");
	    SetVehicleNumberPlate(IsGuardVehicle(i), "DoC");
	}
	print("Plates sucessfully loaded.");
	return 1;
}
But it's not loading all the plates, around five for each SetVehicleNumberPlate. For MedicVehicle five and same with GuardVehicle and CopVehicle.
When I did only one SetVehicleNumberPlate:
Код:
stock LoadPlates()
{
	for(new i=0; i<MAX_VEHICLES; i++)
	{
	    SetVehicleNumberPlate(IsCopVehicle(i), "LSPD");
	}
	print("Plates sucessfully loaded.");
	return 1;
}
Then all the CopVehicle had LSPD plate.
Reply


Messages In This Thread
Stock LoadPlates - by maiky1499 - 26.01.2013, 13:46
Re: Stock LoadPlates - by SAMPHacker - 26.01.2013, 13:51
Re: Stock LoadPlates - by Threshold - 26.01.2013, 13:57
Re : Re: Stock LoadPlates - by lelemaster - 26.01.2013, 16:36
Re: Stock LoadPlates - by maiky1499 - 27.01.2013, 09:29
Re: Stock LoadPlates - by maiky1499 - 30.01.2013, 10:30

Forum Jump:


Users browsing this thread: 2 Guest(s)