myMarker = createMarker( 2485.64136, -1666.60461 ,12.5, "cylinder", 2.0, 255, 0, 0, 150)
hillRadar = createRadarArea ( 2485.64136, -1666.60461, 111, 440, 0, 255, 0, 175 )
addEventHandler( "onMarkerHit", resourceRoot, function ( checkPla )
if ( getElementType ( checkPla ) == "player" ) then
if ( source == myMarker ) then
local Gteam = getPlayerTeam ( checkPla )
if not ( Gteam ) then return outputChatBox ( "Your Not In Team", checkPla, 255, 0, 0, true ) end
local r, g, b = getTeamColor ( Gteam )
setRadarAreaColor ( hillRadar, r, g, b, 255 )
end
end
end )