IsVehicleNitroRecharging: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
(Remove obsolete Requirements section)
 
(4 intermediate revisions by 4 users not shown)
Line 4: Line 4:
This function checks if nitro is recharging on the [[vehicle]].
This function checks if nitro is recharging on the [[vehicle]].
}}
}}
{{Warning|Only works if the vehicle is steamed in}}
{{Warning|Only works if the vehicle is streamed in.}}
==Syntax==  
==Syntax==  
<syntaxhighlight lang="lua">bool isVehicleNitroRecharging ( vehicle theVehicle )</syntaxhighlight>  
<syntaxhighlight lang="lua">bool isVehicleNitroRecharging ( vehicle theVehicle )</syntaxhighlight>  
Line 14: Line 14:
Returns ''true'' if the nitro is currently recharging on the vehicle, ''false'' otherwise.
Returns ''true'' if the nitro is currently recharging on the vehicle, ''false'' otherwise.


==Requirements==
==Example==
{{Requirements|n/a|1.3.1-9.04993|}}
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>


==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