SetVehicleNitroActivated

From Multi Theft Auto: Wiki
Revision as of 16:48, 7 February 2013 by Kenix1 (talk | contribs)
Jump to navigation Jump to search

ADDED/UPDATED IN VERSION 1.3.1 r4993:

This function activate the nitro on the vehicle.

Syntax

bool setVehicleNitroActivated ( vehicle theVehicle, bool state )

Required Arguments

  • theVehicle The vehicle which you want to check an activation.
  • state true if you want to activate the nitro, false if you want to disable it.

Returns

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

Example

addEventHandler( 'onClientVehicleEnter', root,
	function( pPlayer )
		if pPlayer == localPlayer then
			addVehicleUpgrade( source, 1010 ) -- Install a nitro.
			setVehicleNitroActivated( source, true ) -- Activate the nitro.
		end
	end
)

Requirements

This template will be deleted.

See Also