IsVehicleNitroRecharging: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Fix typo.)
(Remove obsolete Requirements section)
 
Line 26: Line 26:
end)
end)
</syntaxhighlight>
</syntaxhighlight>
==Requirements==
{{Requirements|n/a|1.3.1-9.04993|}}


==See Also==
==See Also==
{{Client_vehicle_functions}}
{{Client_vehicle_functions}}

Latest revision as of 17:11, 7 November 2024

This function checks if nitro is recharging on the vehicle.

[[|link=|]] Warning: Only works if the vehicle is streamed 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)

See Also