SetWeaponProperty

From Multi Theft Auto: Wiki
Revision as of 23:11, 16 November 2011 by Arran Fortuna (talk | contribs) (Created page with "{{Server function}} __NOTOC__ Page in the making. ==Syntax== <syntaxhighlight lang="lua">int getVehicleLightState ( vehicle theVehicle, int light )</syntaxhighlight> ==Required Arguments== *'''theVehicl...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Page in the making.

Syntax

int getVehicleLightState ( vehicle theVehicle, int light )

Required Arguments

  • theVehicle: A handle to the vehicle that you wish to know the light state of.
  • light: A whole number between 0 and 3

Returns

Returns 0 (working) or 1 (broken)

Example

newcar = createVehicle ( 520, 1024, 1024, 1024 )
state = getVehicleLightState ( newcar, 0 )
outputChatBox ( "The front-left light state on this car: " .. state )

See Also