if statement OnVehicleSpawn - HELP
#1

Код:
public OnVehicleSpawn(vehicleid)
{
  if(IsSmallVehicle(vehicleid)) {
		Vehicle[vehicleid][Fuel] = randomEx(SMALLV_GAS_MIN , SMALLV_GAS_MAX);
	}
	if(IsMidsizeVehicle(vehicleid)) {
		Vehicle[vehicleid][Fuel] = randomEx(MIDV_GAS_MIN, MIDV_GAS_MAX);
	}
	if(IsLargeVehicle(vehicleid)) {
		Vehicle[vehicleid][Fuel] = randomEx(LARGEV_GAS_MIN, LARGEV_GAS_MAX);
	}
	if(IsExLargeVehicle(vehicleid)) {
		Vehicle[vehicleid][Fuel] = randomEx(EXLARGEV_GAS_MIN, EXLARGEV_GAS_MAX);
	}
	
	return true;
}
Well after the cars spawn and i get in them it says there is no gas in the vehicle, But it if change the coding to this it works fine:


Код:
public OnVehicleSpawn(vehicleid)
{
  Vehicle[vehicleid][Fuel] = randomEx(SMALLV_GAS_MIN , SMALLV_GAS_MAX);
  return true;
}
Does anyone know why, if i check to see what car it is first it doesn't set the gas.
Reply
#2

Код:
public OnVehicleSpawn(vehicleid)
{
	if(IsSmallVehicle(GetVehicleModel(vehicleid))) {
		Vehicle[vehicleid][Fuel] = randomEx(SMALLV_GAS_MIN , SMALLV_GAS_MAX);
	}
	else if(IsMidsizeVehicle(GetVehicleModel(vehicleid))) {
		Vehicle[vehicleid][Fuel] = randomEx(MIDV_GAS_MIN, MIDV_GAS_MAX);
	}
	else if(IsLargeVehicle(GetVehicleModel(vehicleid))) {
		Vehicle[vehicleid][Fuel] = randomEx(LARGEV_GAS_MIN, LARGEV_GAS_MAX);
	}
	else if(IsExLargeVehicle(GetVehicleModel(vehicleid))) {
		Vehicle[vehicleid][Fuel] = randomEx(EXLARGEV_GAS_MIN, EXLARGEV_GAS_MAX);
	}
	return true;
}
Reply
#3

wow apparently i was overlooking that.
Thanks for the help
Reply
#4

no, it actual wouldn't work because:

Код:
stock IsSmallVehicle(vehicleid)
{
  switch ( GetVehicleModel(vehicleid)) {
    case 448, 457, 462, 461, 463, 468, 471, 485, 521, 522, 523, 530, 581, 586, 571, 572, 574, 583 : return true;
	}
  return false;
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)