GetVehicleEngineState: Difference between revisions
From Onset Developer Wiki
FlyingFork (talk | contribs) No edit summary |
FlyingFork (talk | contribs) No edit summary |
||
Line 19: | Line 19: | ||
local state = not GetVehicleEngineState(vehicle) | local state = not GetVehicleEngineState(vehicle) | ||
if state == true then | |||
StopVehicleEngine(vehicle) | |||
else | |||
StartVehicleEngine(vehicle) | |||
end | |||
return AddPlayerChat(playerid, "Vehicle engine state changed to: " .. (state and "on" or "off") .. "!") | return AddPlayerChat(playerid, "Vehicle engine state changed to: " .. (state and "on" or "off") .. "!") | ||
end) | end) |
Latest revision as of 16:11, 27 May 2021
Description
Get the vehicle's engine state.
Syntax
GetVehicleEngineState(vehicle)
Parameters
- vehicle
The vehicle identifier.
Return Value
- Returns true if on.
Example
AddCommand("engine", function(playerid)
local vehicle = GetPlayerOccupiedVehicle(playerid)
if vehicle == 0 then
return AddPlayerChat(playerid, "You must be in a vehicle!")
end
local state = not GetVehicleEngineState(vehicle)
if state == true then
StopVehicleEngine(vehicle)
else
StartVehicleEngine(vehicle)
end
return AddPlayerChat(playerid, "Vehicle engine state changed to: " .. (state and "on" or "off") .. "!")
end)
See also
- CreateVehicle
- DestroyVehicle
- IsValidVehicle
- GetVehicleCount
- GetAllVehicles
- GetVehicleModel
- GetVehicleModelName
- SetVehicleRespawnParams
- IsVehicleStreamedIn
- GetStreamedVehiclesForPlayer
- GetStreamedVehicles
- SetVehicleLocation
- GetVehicleLocation
- SetVehicleRotation
- GetVehicleRotation
- SetVehicleHeading
- GetVehicleHeading
- SetVehicleHealth
- GetVehicleHealth
- SetVehicleLicensePlate
- GetVehicleVelocity
- GetVehicleDriver
- GetVehiclePassenger
- GetVehicleNumberOfSeats
- SetVehicleColor
- GetVehicleColor
- SetVehicleLinearVelocity
- SetVehicleAngularVelocity
- GetVehicleGear
- SetVehicleHoodRatio
- GetVehicleHoodRatio
- SetVehicleTrunkRatio
- GetVehicleTrunkRatio
- StartVehicleEngine
- StopVehicleEngine
- GetVehicleEngineState
- SetVehicleLightEnabled
- GetVehicleLightState
- SetVehicleDamage
- GetVehicleDamage
- AttachVehicleNitro