GangZoneFlashForAll

GangZoneFlashForAll

Description:
Function GangZoneFlashForAll flashes a gangzone for all players.


Parameters:
(zone, flashcolor)
int zone The zone to flash.
int flashcolor The color to flash the gang zone, as an integer or hex in RGBA color format. Alpha transparency supported.


Return Values:
This function does not return any specific values.


Examples:
new gangzone;
 
public OnGameModeInit()
{
    gangzone = GangZoneCreate(1248.011, 2072.804, 1439.348, 2204.319);
    return 1;
}
 
public OnPlayerDeath(playerid, killerid, reason)
{
    GangZoneFlashForAll(gangzone,COLOR_RED);
    return 1;
}


Related Functions
The following functions may be useful, as they are related to this function in one way or another.