SetVehicleLightState

From Multi Theft Auto: Wiki
Revision as of 15:14, 29 August 2007 by Talidan (talk | contribs)
Jump to navigation Jump to search

Description

This function sets the state of the light on the vehicle.

Syntax

void setVehicleLightState ( vehicle theVehicle, int light, int state )

Required Arguments

  • theVehicle: A handle to the vehicle that you wish to change the light state of.
  • light: A whole number determining the individual light.
  • state: A whole number determining the new state of the light. 0 represents normal lights, and 1 represents broken lights.

Example

newcar = createVehicle ( 520, 1024, 1024, 1024 )   -- create a new vehicle
state = setVehicleLightState ( newcar, 0,  1 )     -- break one of its lights

See Also