SetVehicleDirtLevel: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
mNo edit summary
m (Fixed)
 
Line 1: Line 1:
__NOTOC__
__NOTOC__
{{Server client function}}
{{Server client function}}
{{Disabled|This function doesn't work actually. See the bugtracker for updates and more information.}}
<!--{{Disabled|This function doesn't work actually. See the bugtracker for updates and more information.}}-->
This function sets the dirt level on a vehicle.
This function sets the dirt level on a vehicle.


Line 17: Line 17:


==Example==
==Example==
<syntaxhighlight lang="lua">
{{Needs Example}}
--TODO
</syntaxhighlight>


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

Latest revision as of 20:18, 14 December 2024

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: (0.0 = fully clean, 15.0 = maximum dirt visible.)

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

Accessories-text-editor.png Script Example Missing Function SetVehicleDirtLevel needs a script example, help out by writing one.

Before submitting check out Editing Guidelines Script Examples.


See Also