SetVehicleColor

From Onset Developer Wiki
SetVehicleColor

Type: Function
Context: Server
Introduced: v1.0

Description

Sets the color of a given vehicle.

Syntax

SetVehicleColor(vehicle, IntColor)

Parameters

  • vehicle
    The vehicle to change the color of.
  • IntColor
    The color as an integer. Use RGB to convert RGB codes to int.

Return Value

  • Returns true on success, false on error.

Example

function cmd_vcolor(player, r, g, b)
	if (r == nil or g == nil or b == nil) then
		return AddPlayerChat(player, "Usage: /vcolor <r> <g> <b>")
	end

	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

	SetVehicleColor(vehicle, RGB(r, g, b))
	AddPlayerChat(player, "New vehicle color set (Integer color: "..GetVehicleColor(vehicle)..")")
end
AddCommand("vcolor", cmd_vcolor)

See also