12.12.2013, 17:49 
	
	
	pawn Код:
public OnVehicleSpawn(vehicleid)
{
for(new i; i < MAX_VEHICLES; i ++) // creating a loop through all vehicles
{
if(vehicleid == LSPDVehicles[i])
{
SetVehicleHealth(vehicleid,2500);
}// for each LSPD vehicle set vehicle health to 2500 as you want!
}
return 1;
}

