AttachVehicleNitro

From Onset Developer Wiki
Revision as of 14:31, 12 August 2019 by Kuzkay (talk | contribs)
AttachVehicleNitro

Type: Function
Context: Server
Introduced: v1.0

Description

Enabled/Disables vehicle nitro function, value can be true or false

Syntax

AttachVehicleNitro(vehicle [, attach])

Parameters

  • vehicle
    Vehicle object which you want to attach nitro to
  • attach (optional)
    boolean, an true or false value

Return Value

  • This function does not return any values

Example

function ToggleNitro(player)
	--Gets vehicle player is currently driving
	local vehicle = GetPlayerVehicle(player)
	
	--make sure vehicle is not equal to 0
	if vehicle ~= 0 then
		--enable nitro + print a message on the chat
		AttachVehicleNitro(vehicle, true)
		
		AddPlayerChat(player, "Nitro has been enabled")
	else
		--vehicle was equal to 0 and vehicle was not found, print an error message on the chat
		AddPlayerChat(player, "You must be in a vehicle to enable nitro")
	end
	
end

See also

__EDIT_ME__