FixVehicle

From Multi Theft Auto: Wiki
Revision as of 12:11, 25 May 2006 by EAi (talk | contribs) (→‎Example)
Jump to navigation Jump to search

This function will set a vehicle's health to full and fix it's damage model. If you wish to just change the vehicle's health, without affecting it's damage model, use setVehicleHealth.

Syntax

bool fixVehicle ( vehicle theVehicle )             

Required Arguments

  • theVehicle: The vehicle you wish to fix

Returns

Returns true if the vehicle was fixed, false if theVehicle is invalid.

Example

This example fixes all the vehicles that exist in the map.

-- Retrieve a table containing all the vehicles that exist
vehicles = getElementsByType ( "vehicle" )
-- Loop through the list, storing the vehicle from the table in the variable vehicleValue
for vehicleKey, vehicleValue in blips do
	-- fix the vehicle
	fixVehicle ( vehicleHealth )
end

See Also