SetVehicleDirtLevel: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(New page: __NOTOC__ {{server client function}} This function sets the dirt level on a vehicle. ==Syntax== <syntaxhighlight lang="lua"> bool setVehicleDirtLevel ( vehicle theVehicle, int dirtLevel ) </syntaxhighlight> ===Re...)
 
(Undo revision 33813 by KryPtoHolYx (talk))
(6 intermediate revisions by 6 users not shown)
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.}}
This function sets the dirt level on a vehicle.
This function sets the dirt level on a vehicle.


Line 19: Line 20:
--TODO
--TODO
</syntaxhighlight>
</syntaxhighlight>
==Issues==
{{Issues|
{{Issue|3164|Not fixable and closed}}
}}


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

Revision as of 21:15, 22 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

--TODO

Issues

Issue ID Description
#3164 Not fixable and closed

See Also