getRadarAreaColor
Client-side
Server-side
Shared
Manual Review Required
Please finish this page using the corresponding Old Wiki article. Go to Contribution guidelines for more information.
This function can be used to retrieve the current color of a radar area.
OOP Syntax Help! I don't understand this!
- Method: radararea:getColor(...)
Syntax
int, int, int, int getRadarAreaColor ( radararea theRadararea )Required Arguments
- theRadararea: The radar area you wish to retrieve the colour of.
Returns
- int: value1
- int: value2
- int: value3
- int: value4
Returns four integers in RGBA format ( red , green , blue , alpha ), with a maximum value of 255 for each. Alpha decides transparency where 255 is opaque and 0 is transparent. Returns false if the radararea is invalid.
Code Examples
shared
This example checks the color of a radararea defined as 'area' and announces if it is Ballas or Grove Street territory.
local r,g,b,a = getRadarAreaColor ( area ) -- get the color of 'area' and store it in 'r', 'g', 'b' and 'a'if r == 0 and g == 255 and b == 0 then -- if the radar area is fully green outputChatBox ( "This is Grove Street turf!" ) -- announce it as grove street areaelseif r == 255 and g == 0 and b == 255 then -- if it is purple however outputChatBox ( "This is Ballas turf!" ) -- announce it as ballas areaend