Tocolor: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
mNo edit summary |
||
(23 intermediate revisions by 6 users not shown) | |||
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
{{ | {{Server client function}} | ||
This function retrieves the hex number of a specified color, useful for the dx functions. | This function retrieves the hex number of a specified color, useful for the dx functions. | ||
{{New feature/item|3.0156|1.5.5|13977|Added server-side.}} | |||
==Syntax== | ==Syntax== | ||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
int tocolor ( int red, int green, int blue [, int alpha = 255] ) | int tocolor ( int red, int green, int blue [, int alpha = 255 ] ) | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Line 12: | Line 13: | ||
* '''green:''' The amount of [http://en.wikipedia.org/wiki/RGBA_color_space green] in the color (0-255). | * '''green:''' The amount of [http://en.wikipedia.org/wiki/RGBA_color_space green] in the color (0-255). | ||
* '''blue:''' The amount of [http://en.wikipedia.org/wiki/RGBA_color_space blue] in the color (0-255). | * '''blue:''' The amount of [http://en.wikipedia.org/wiki/RGBA_color_space blue] in the color (0-255). | ||
===Optional Arguments=== | |||
* '''alpha:''' The amount of [http://en.wikipedia.org/wiki/RGBA_color_space alpha] in the color (0-255). | * '''alpha:''' The amount of [http://en.wikipedia.org/wiki/RGBA_color_space alpha] in the color (0-255). | ||
Line 17: | Line 20: | ||
Returns a single value representing the color. | Returns a single value representing the color. | ||
==Example== | ==Example== | ||
<section name="Client" class="client" show="true"> | |||
This example displays the text "Tuna" in small at the top left side of your screen. The color of this text can be changed using the command /tunaColor. | |||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
-- | local tunaColor = tocolor(255, 0, 0, 255) -- Default color | ||
-- This function draws the text | |||
local function drawTuna() | |||
dxDrawText("Tuna", 5, 5, 100, 100, tunaColor) | |||
end | |||
addEventHandler("onClientRender", root, drawTuna) | |||
--This function handles the /tunaColor command, allowing players to set the color of tuna | |||
local function tunaColorCommand(command, red, green, blue, alpha) | |||
red, green, blue, alpha = tonumber(red), tonumber(green), tonumber(blue), tonumber(alpha) -- Convert all the args to numbers. NOTE: tonumber will return false if the arg is not provided/is not valid. | |||
-- Remind the user of the proper syntax if they failed to provide all the args | |||
if not red or not green or not blue then | |||
outputChatBox("* USAGE: /tunaColor [red] [green] [blue] [alpha]", 255, 0, 0) | |||
return | |||
end | |||
-- Make the alpha arg optional | |||
if not alpha then | |||
alpha = 255 | |||
end | |||
-- Update the color | |||
tunaColor = tocolor(red, green, blue, alpha) | |||
end | |||
addCommandHandler("tunaColor", tunaColorCommand) | |||
-- Example /setcoloroftuna 255 0 0 255 - for red. | |||
</syntaxhighlight> | </syntaxhighlight> | ||
</section> | |||
==Changelog== | |||
{{ChangelogHeader}} | |||
{{ChangelogItem|1.5.5-r13977|Added server-side}} | |||
==See Also== | ==See Also== | ||
{{ | {{Utility_functions}} | ||
Latest revision as of 13:49, 6 August 2018
This function retrieves the hex number of a specified color, useful for the dx functions. Added server-side.
Syntax
int tocolor ( int red, int green, int blue [, int alpha = 255 ] )
Required Arguments
- red: The amount of red in the color (0-255).
- green: The amount of green in the color (0-255).
- blue: The amount of blue in the color (0-255).
Optional Arguments
- alpha: The amount of alpha in the color (0-255).
Returns
Returns a single value representing the color.
Example
Click to collapse [-]
ClientThis example displays the text "Tuna" in small at the top left side of your screen. The color of this text can be changed using the command /tunaColor.
local tunaColor = tocolor(255, 0, 0, 255) -- Default color -- This function draws the text local function drawTuna() dxDrawText("Tuna", 5, 5, 100, 100, tunaColor) end addEventHandler("onClientRender", root, drawTuna) --This function handles the /tunaColor command, allowing players to set the color of tuna local function tunaColorCommand(command, red, green, blue, alpha) red, green, blue, alpha = tonumber(red), tonumber(green), tonumber(blue), tonumber(alpha) -- Convert all the args to numbers. NOTE: tonumber will return false if the arg is not provided/is not valid. -- Remind the user of the proper syntax if they failed to provide all the args if not red or not green or not blue then outputChatBox("* USAGE: /tunaColor [red] [green] [blue] [alpha]", 255, 0, 0) return end -- Make the alpha arg optional if not alpha then alpha = 255 end -- Update the color tunaColor = tocolor(red, green, blue, alpha) end addCommandHandler("tunaColor", tunaColorCommand) -- Example /setcoloroftuna 255 0 0 255 - for red.
Changelog
Version | Description |
---|
1.5.5-r13977 | Added server-side |
See Also
- addDebugHook
- base64Decode
- base64Encode
- debugSleep
- decodeString
- encodeString
- fromJSON
- generateKeyPair
- getColorFromString
- getDevelopmentMode
- getDistanceBetweenPoints2D
- getDistanceBetweenPoints3D
- getEasingValue
- getNetworkStats
- getNetworkUsageData
- getPerformanceStats
- getRealTime
- getTickCount
- getTimerDetails
- getTimers
- getFPSLimit
- getUserdataType
- getVersion
- gettok
- isTransferBoxVisible
- setTransferBoxVisible
- hash
- inspect
- interpolateBetween
- iprint
- isOOPEnabled
- isTimer
- killTimer
- md5
- passwordHash
- passwordVerify
- pregFind
- pregMatch
- pregReplace
- removeDebugHook
- resetTimer
- setDevelopmentMode
- setFPSLimit
- setTimer
- ref
- deref
- sha256
- split
- teaDecode
- teaEncode
- toJSON
- tocolor
- getProcessMemoryStats
- utfChar
- utfCode
- utfLen
- utfSeek
- utfSub
- bitAnd
- bitNot
- bitOr
- bitXor
- bitTest
- bitLRotate
- bitRRotate
- bitLShift
- bitRShift
- bitArShift
- bitExtract
- bitReplace