IsVehicleNitroActivated: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
m (-warning / please specify a good reason in the discussion or in the note and add a Bug Tracker report link to it.)
m (-info)
Line 4: Line 4:
This function checks if nitro is activated on the [[vehicle]].
This function checks if nitro is activated on the [[vehicle]].
}}
}}
This function checks whether a vehicle has activated nitro as set by [[setVehicleNitroActivated]] or the player.


==Syntax==  
==Syntax==  

Revision as of 11:26, 14 March 2013

ADDED/UPDATED IN VERSION 1.3.1 r4993:

This function checks if nitro is activated on the vehicle.

Syntax

bool isVehicleNitroActivated ( vehicle theVehicle )

Required Arguments

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

Returns

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

Example

This example creates an explosion if nitro is activated.

local iTickCount

function explodeNitrousVehicle()
	if isPedInVehicle(localPlayer) then -- Check if the player is in a vehicle
		local pVehicle = getPedOccupiedVehicle(localPlayer)
		if pVehicle and getVehicleUpgradeOnSlot(pVehicle, 8) then -- Check if the vehicle has nitrous added in it
			local fVelX, fVelY, fVelZ = getElementVelocity(pVehicle)
			if isVehicleNitroActivated(pVehicle) and fVelX ~= 0 and fVelY ~= 0 and fVelZ ~= 0 then -- Check if the nitro is activated and the vehicle is not moving
				if not iTickCount or getTickCount() - iTickCount > 100 then
					local fX, fY, fZ = getElementPosition(pVehicle)
					createExplosion(fX, fY, fZ, 10, true, -1.0, false) -- Create an explosion in the vehicle
					iTickCount = getTickCount()
				end
			end
		end
	end
end
addEventHandler("onClientRender", root, explodeNitrousVehicle)

Requirements

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

Note: Using this feature 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