textItemGetColor | Multi Theft Auto: Wiki Skip to content

textItemGetColor

Client-side
Server-side
Shared

This page is incomplete! Help wanted!

Please finish this page using the corresponding Old Wiki article.
Go to Contribution guidelines for more information.


This function allows you to retrieve the color of a text item.

Syntax

textItemGetColor ( )

Code Examples

server

This example gets the color of a text item named 'theTextItem' and if it is green, changes it to blue.

local r,g,b,a = textItemGetColor ( theTextItem ) -- get the text color and store it in the variables 'r','g','b' and 'a'
if ( r == 0 ) and ( g == 255 ) and ( b == 0 ) then -- if the color is green
textItemSetColor ( theTextItem, 0, 0, 255, 255 ) -- set it to blue
end