ResetVehicleIdleTime: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Added an example.)
(Replace to predefined variables.)
 
Line 24: Line 24:
end
end
-- When this resource is stopped, trigger the resetVehiclesIdleTime function (above).
-- When this resource is stopped, trigger the resetVehiclesIdleTime function (above).
addEventHandler ( "onResourceStop", getResourceRootElement(getThisResource()), resetVehiclesIdleTime )
addEventHandler ( "onResourceStop", resourceRoot, resetVehiclesIdleTime )
</syntaxhighlight>
</syntaxhighlight>


==See Also==
==See Also==
{{Vehicle functions}}
{{Vehicle functions}}

Latest revision as of 04:33, 16 May 2023

Resets the vehicle idle time

Syntax

bool resetVehicleIdleTime ( vehicle theVehicle )

Required Arguments

  • theVehicle: The vehicle you wish to reset the idle time from.

Returns

Returns true if the vehicle idle time has been reset, false if it failed to reset the idle time.

Example

This example resets every vehicle's idle time when the resource is stopped.

function resetVehiclesIdleTime ()
	local vehicles = getElementsByType ( "vehicle" ) -- Return all the vehicles in a table
		for k, vehicle in ipairs ( vehicles ) do -- For every vehicle do the following...
			resetVehicleIdleTime ( vehicle ) -- Reset the vehicle's idle time
		end
end
-- When this resource is stopped, trigger the resetVehiclesIdleTime function (above).
addEventHandler ( "onResourceStop", resourceRoot, resetVehiclesIdleTime )

See Also