setRadarAreaFlashing
Client-side
Server-side
Shared
Pair: isRadarAreaFlashing
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 makes an existing radar area flash in transparency.
Syntax
setRadarAreaFlashing ( )Code Examples
server
Example 1:This example checks to see whether an existing radar area (someArea) is flashing, and forces it to flash if it isn't:
local isFlashing = isRadarAreaFlashing ( someArea )if isFlashing then -- if the area is already flashing... outputChatBox ( "The radar area is already flashing." )else -- if it isn't... setRadarAreaFlashing ( someArea, true ) -- make the area flashend