IsVehicleNitroRecharging: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
mNo edit summary
Line 15: Line 15:


==Example==
==Example==
{{Example}}
This example will print if vehicle's nitro is already recharging
<syntaxhighlight lang="lua">
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)
</syntaxhighlight>


==Requirements==
==Requirements==

Revision as of 02:11, 4 October 2019

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

This template will be deleted.

See Also