SA-MP Forums Archive
if statement OnVehicleSpawn - HELP - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: if statement OnVehicleSpawn - HELP (/showthread.php?tid=156541)



if statement OnVehicleSpawn - HELP - kevin974 - 23.06.2010

Код:
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.


Re: if statement OnVehicleSpawn - HELP - bigcomfycouch - 23.06.2010

Код:
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;
}



Re: if statement OnVehicleSpawn - HELP - kevin974 - 23.06.2010

wow apparently i was overlooking that.
Thanks for the help


Re: if statement OnVehicleSpawn - FIXED - kevin974 - 23.06.2010

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;
}