IsVehicleNitroRecharging

From Multi Theft Auto: Wiki

This function checks if nitro is recharging on the vehicle.

[[|link=]] Warning: Only works if the vehicle is steamed in

Syntax

bool isVehicleNitroRecharging ( vehicle theVehicle )

Required Arguments

  • theVehicle The vehicle, which you want to check for recharging.

Returns

Returns true if the nitro is currently recharging on the vehicle, false otherwise.

Example

This example will print if vehicle's nitro is already recharging

addCommandHandler("checknitro",function ()
    local pedVeh = getPedOccupiedVehicle(localPlayer)
    if pedVeh then
        if isVehicleNitroRecharging(pedVeh) then
            outputChatBox("Your vehicle's nitro is recharging.",255,255,0)
        end
    end
end)

Requirements

Minimum supported server n/a
Minimum supported client 1.3.1-9.04993

Note: Using this function requires the resource to have the above minimum version declared in the meta.xml <min_mta_version> section. e.g. <min_mta_version client="1.3.1-9.04993" />

See Also

FROM VERSION 1.5.7 r19626 ONWARDS
FROM VERSION 1.6 r7485 ONWARDS
FROM VERSION 1.6 r7485 ONWARDS