SetVehicleHoodRatio

From Onset Developer Wiki
SetVehicleHoodRatio

Type: Function
Context: Server
Introduced: v1.0

Description

Sets a vehicles hood to a specific open ratio.

Syntax

SetVehicleHoodRatio(vehicle, openRatio)

Parameters

  • vehicle
    The identifier of the vehicle.
  • openRatio
    The ratio to open the hood in degrees. 0 closes the hood.

Return Value

  • This function returns true on success.

Example

function cmd_trunk(player, ratio)
	local vehicle = GetPlayerVehicle(player)

	if (vehicle == 0) then
		return AddPlayerChat(player, "You must be in a vehicle")
	end

	if (GetPlayerVehicleSeat(player) ~= 1) then
		return AddPlayerChat(player, "You must be the driver of the vehicle")
	end

	if (ratio == nil) then
		if (GetVehicleTrunkRatio(vehicle) > 0.0) then
			SetVehicleTrunkRatio(vehicle, 0.0)
		else
			SetVehicleTrunkRatio(vehicle, 60.0)
		end
	else
		ratio = tonumber(ratio)

		if (ratio > 90.0) then
			ratio = 90.0
		elseif (ratio < 0.0) then
			ratio = 0.0
		end

		SetVehicleTrunkRatio(vehicle, ratio)
	end
end
AddCommand("trunk", cmd_trunk)

See also