RGBA

From Onset Developer Wiki
Revision as of 13:36, 10 January 2020 by 28days (talk | contribs)
RGBA

Type: Function
Context: Server & Client
Introduced: v1.0

Description

Returns the RGBA hex from the RGBA integer. The RGBA values must be between 0 to 255.

Syntax

RGBA(r, g, b, a)

Parameters

  • r
    The red
  • g
    The green
  • b
    The blue
  • a
    The alphaopacity

Return Value

  • Returns the RGBA hex

Example

AddCommand("colorv", function(playerid, red, green, blue, alpha)
	if red < 0 or red > 255 or green < 0 or green > 255 or blue < 0 or blue > 255 or alpha < 0 or alpha > 255 then
		AddPlayerChat(playerid, "Usage: /colorv <red> <green> <blue>")
	end

	local vehicleid = GetPlayerVehicle(playerid)

	if vehicleid ~= 0 then
		AddPlayerChat(playerid, "You must be in a vehicle...")
	end

	SetVehicleColor(vehicleid, RGBA(red, green, blue, alpha))
end)

See also