IsVehicleTaxiLightOn: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
mNo edit summary
(One intermediate revision by one other user not shown)
Line 7: Line 7:
bool isVehicleTaxiLightOn ( vehicle taxi )               
bool isVehicleTaxiLightOn ( vehicle taxi )               
</syntaxhighlight>  
</syntaxhighlight>  
 
{{OOP||[[vehicle]]:isTaxiLightOn|taxiLightOn|setVehicleTaxiLightOn}}
===Required Arguments===  
===Required Arguments===  
*'''taxi:''' The vehicle element of the taxi that you wish to get the light state of.
*'''taxi:''' The vehicle element of the taxi that you wish to get the light state of.
Line 19: Line 19:
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
function toggleTaxiLight()
function toggleTaxiLight()
local thePlayer = getLocalPlayer()
  local thePlayer = getLocalPlayer()
local theVehicle = getPedOccupiedVehicle(thePlayer)
  if isPedInVehicle(thePlayer) then
if thePlayer == getVehicleOccupant(theVehicle, 0) then -- if is a driver
      local theVehicle = getPedOccupiedVehicle(thePlayer)
local id = getElementModel(theVehicle) -- getting vehicle model
      if thePlayer == getVehicleOccupant(theVehicle, 0) then -- if is a driver
if ((id == 420) or (id== 438)) then -- if is a taxi
local id = getElementModel(theVehicle) -- getting vehicle model
local lights = isVehicleTaxiLightOn(theVehicle) -- getting vehicle lights state
if ((id == 420) or (id == 438)) then -- if is a taxi
setVehicleTaxiLightOn(theVehicle, not lights) -- switch lights
    local lights = isVehicleTaxiLightOn(theVehicle) -- getting vehicle lights state
end
    setVehicleTaxiLightOn(theVehicle, not lights) -- switch lights
end
end
      end
  end
end
end
bindKey("o", "down", toggleTaxiLight) -- binding the function
bindKey("o", "down", toggleTaxiLight) -- binding the function
</syntaxhighlight>
</syntaxhighlight>
</section>
</section>

Revision as of 23:01, 2 August 2016

This function will get the taxi light state of a taxi (vehicle IDs 420 and 438)

Syntax

bool isVehicleTaxiLightOn ( vehicle taxi )              

OOP Syntax Help! I don't understand this!

Method: vehicle:isTaxiLightOn(...)
Variable: .taxiLightOn
Counterpart: setVehicleTaxiLightOn


Required Arguments

  • taxi: The vehicle element of the taxi that you wish to get the light state of.

Returns

Returns true if the light is on, false otherwise.

Example

Click to collapse [-]
Client

This example binds the 'o' key to a function that toggles the taxi's light on and off, if you're in a taxi.

function toggleTaxiLight()
   local thePlayer = getLocalPlayer()
   if isPedInVehicle(thePlayer) then
      local theVehicle = getPedOccupiedVehicle(thePlayer)
      if thePlayer == getVehicleOccupant(theVehicle, 0) then -- if is a driver
	 local id = getElementModel(theVehicle) -- getting vehicle model
	 if ((id == 420) or (id == 438)) then -- if is a taxi
	    local lights = isVehicleTaxiLightOn(theVehicle) -- getting vehicle lights state
	    setVehicleTaxiLightOn(theVehicle, not lights) -- switch lights
	 end
      end	
   end
end
bindKey("o", "down", toggleTaxiLight) -- binding the function

See Also