SetVehicleDamageProof

From Multi Theft Auto: Wiki
Revision as of 19:52, 25 July 2007 by Driver2 (talk | contribs)
Jump to navigation Jump to search

This functions sets a vehicle damage proof, meaning it can't be destroyed at all.

Syntax

bool setVehicleDamageProof ( vehicle theVehicle, bool damageProof )

Required Arguments

  • theVehicle: The vehicle you wish to set damage proof.
  • damageProof: true to set the vehicle damage proof, false otherwise.

Optional Arguments

NOTE: When using optional arguments, you might need to supply all arguments before the one you wish to use. For more information on optional arguments, see optional arguments. (none)

Returns

Returns true if the vehicle was set damage proof succesfully, false if the arguments are invalid or it failed.

Example

This example spawn a vehicle and sets it damage proof immediately.

local vehicle = createVehicle(602,0,0,6)
setVehicleDamageProof(vehicle,true)

See Also