SetVehicleDoorsUndamageable: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 23: Line 23:
==See Also==
==See Also==
{{Vehicle functions}}
{{Vehicle functions}}
[[Category:Needs example]]
[[Category:Needs Example]]

Revision as of 20:46, 26 August 2007

This function makes a vehicle's doors undamageable, so they won't fall off when they're hit.

Syntax

Click to collapse [-]
Server and Client
bool setVehicleDoorsUndamageable ( vehicle theVehicle, bool state )

Required Arguments

  • theVehicle: The vehicle of which you wish to set the car door damageability.
  • state: A boolean denoting whether the vehicle's doors are undamageable (true) or damageable (false) damageable.

Returns

Returns true if the damageability state was successfully changed, false if invalid arguments were passed.

Example


See Also