SetVehicleDirtLevel: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
Line 17: Line 17:


==Example==
==Example==
Sets the Dirt level from the Bobcat to Zero ( 0 )
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
--TODO
setVehicleDirtLevel ( 422, 0 )
</syntaxhighlight>
</syntaxhighlight>



Revision as of 21:11, 21 October 2012

Dialog-warning.png Function has been disabled.

Reason/Note: This function doesn't work actually. See the bugtracker for updates and more information.

This function sets the dirt level on a vehicle.

Syntax

bool setVehicleDirtLevel ( vehicle theVehicle, int dirtLevel )

Required Arguments

  • theVehicle: The vehicle that you want to set the dirt level from
  • dirtLevel: The dirt level

Returns

Returns true if the dirt level was set on the vehicle, false if the dirt level was not set or if invalid arguments are specified.

Example

Sets the Dirt level from the Bobcat to Zero ( 0 )

setVehicleDirtLevel ( 422, 0 )

Issues

Issue ID Description
#3164 Not fixable and closed

See Also